結果
| 問題 |
No.289 数字を全て足そう
|
| コンテスト | |
| ユーザー |
MrEMGration
|
| 提出日時 | 2019-03-24 15:39:04 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 48 ms / 1,000 ms |
| コード長 | 109 bytes |
| コンパイル時間 | 243 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 58,880 KB |
| 最終ジャッジ日時 | 2024-10-02 09:54:52 |
| 合計ジャッジ時間 | 2,283 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
s=input()
total=0
for i in range(len(s)):
if s[i].isnumeric():
total += int(s[i])
print(total)
MrEMGration