結果
| 問題 | No.289 数字を全て足そう |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-03-05 11:04:45 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 639 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 20,828 KB |
| 最終ジャッジ日時 | 2026-03-08 09:43:57 |
| 合計ジャッジ時間 | 6,963 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 21 |
ソースコード
s = input()
s_list = list(s)
l = len(s_list)
souwa = 0
for i in l:
if s_list[i].isdigit():
souwa += int(s_list[i])
print(souwa)