結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー H IH I
提出日時 2020-05-10 19:07:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 75 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 53,440 KB
最終ジャッジ日時 2024-07-08 01:28:40
合計ジャッジ時間 1,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,300 KB
testcase_01 AC 39 ms
53,436 KB
testcase_02 AC 36 ms
52,520 KB
testcase_03 AC 36 ms
53,176 KB
testcase_04 AC 36 ms
53,364 KB
testcase_05 AC 38 ms
52,392 KB
testcase_06 AC 38 ms
52,228 KB
testcase_07 AC 40 ms
52,948 KB
testcase_08 AC 40 ms
51,760 KB
testcase_09 AC 37 ms
52,044 KB
testcase_10 AC 37 ms
52,008 KB
testcase_11 AC 37 ms
53,068 KB
testcase_12 AC 37 ms
52,332 KB
testcase_13 AC 37 ms
52,352 KB
testcase_14 AC 37 ms
51,932 KB
testcase_15 AC 37 ms
52,248 KB
testcase_16 AC 37 ms
52,132 KB
testcase_17 AC 37 ms
52,732 KB
testcase_18 AC 37 ms
51,848 KB
testcase_19 AC 37 ms
52,436 KB
testcase_20 AC 36 ms
51,728 KB
testcase_21 AC 36 ms
53,440 KB
testcase_22 AC 36 ms
52,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
c = 0
for i in range(0,len(s)):
  c = c + int(s[i])
  
print(c)
0