AtCoder Beginner Contest 072

Updated:

AtCoder Beginner Contest 072

Source codes

Solutions

A - Sandglass2

$\max(0, X - t)$ を出力する。

B - OddString

普通に奇数番目の文字を出力する。

ポイント

$1$-indexed で「奇数番目」は、 $0$-indexed で偶数番目である。ここで間違えた。もちろんサンプルで落ちたので WA ではないが。

for 文を i++ ではなく i += 2 で回したほうが簡明である。しかしこういう小技は間違いやすいので、個人的には if (i % 2 == 0) の方がいいと思う。

Others