0
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練習(2024.11.14)

Posted at

キーワード

問題

すぬけ君は
1,2,3 の番号がついた
3 つのマスからなるマス目を持っています。 各マスには 0 か 1 が書かれており、マス
i には
s
i

が書かれています。

すぬけ君は 1 が書かれたマスにビー玉を置きます。 ビー玉が置かれるマスがいくつあるか求めてください。

制約
s
1

,s
2

,s
3

は 1 あるいは 0
入力
入力は以下の形式で標準入力から与えられる。

s
1

s
2

s
3

出力
答えを出力せよ。

入力例 1
Copy
101
出力例 1
Copy
2
マス
1,3 にビー玉が置かれます
入力例 2
Copy
000
出力例 2
Copy
0
ビー玉はどのマスにも置かれません

回答

a = str(input())
print(a.count("1"))

参考

備考

  • int形のcount関数を探していただけど、そもそもinputの形を変えればいいだけの話だったんだ。
0
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
0
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?