1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

AtCoder初心者振り返りメモ ABC345

Last updated at Posted at 2024-03-17

ABC345の回

A-問題

[問題文]
<, =, > のみからなる文字列 S が与えられます。
S が 双方向矢印型 の文字列 <=> であるか判定してください。

[考察や感想]
入力例3で <>>はNo判定なので、
最終形が <> であれば「双方向矢印型」ではないかと推測し
= をreplaceで除去して、<> であれば Yes でなければ No と記述しました。

A.py
# 入力の受け取り
T = input()

S = T.replace("=","")

if S == "<>":
    print("Yes")
else:
    print("No")

B-問題

345b.png

[考察や感想]
入力例と出力例をいくつか見て、10で割って切り上げていると思いつき割と早く正答できました。
10で割り切れない場合は、商 + 1
10で割り切れる場合は、そのまま商を返します。

B.py
# 入力の受け取り
N = int(input())

if N % 10 != 0:
    ans = N // 10 + 1
else:
    ans = N // 10

print(ans)
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?