結果

問題 No.289 数字を全て足そう
ユーザー shakayamishakayami
提出日時 2023-02-09 03:52:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 77 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 60,748 KB
最終ジャッジ日時 2024-07-06 11:03:29
合計ジャッジ時間 2,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,696 KB
testcase_01 AC 37 ms
52,556 KB
testcase_02 AC 37 ms
51,948 KB
testcase_03 AC 38 ms
52,328 KB
testcase_04 AC 37 ms
52,176 KB
testcase_05 AC 41 ms
57,716 KB
testcase_06 AC 42 ms
59,428 KB
testcase_07 AC 42 ms
59,520 KB
testcase_08 AC 43 ms
60,428 KB
testcase_09 AC 41 ms
57,864 KB
testcase_10 AC 43 ms
59,968 KB
testcase_11 AC 44 ms
60,576 KB
testcase_12 AC 43 ms
59,580 KB
testcase_13 AC 42 ms
59,684 KB
testcase_14 AC 43 ms
60,748 KB
testcase_15 AC 42 ms
59,576 KB
testcase_16 AC 42 ms
59,548 KB
testcase_17 AC 43 ms
60,148 KB
testcase_18 AC 43 ms
60,132 KB
testcase_19 AC 43 ms
58,976 KB
testcase_20 AC 42 ms
60,340 KB
testcase_21 AC 37 ms
52,824 KB
testcase_22 AC 43 ms
58,688 KB
testcase_23 AC 41 ms
58,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans=0
for x in input():
    if 48<=ord(x)<58:
        ans+=int(x)
print(ans)
0