結果
| 問題 | No.289 数字を全て足そう |
| コンテスト | |
| ユーザー |
kawacchu
|
| 提出日時 | 2019-03-22 00:27:13 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 107 bytes |
| 記録 | |
| コンパイル時間 | 598 ms |
| コンパイル使用メモリ | 20,568 KB |
| 実行使用メモリ | 20,572 KB |
| 最終ジャッジ日時 | 2026-04-07 06:30:40 |
| 合計ジャッジ時間 | 6,993 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 2 |
| other | AC * 2 RE * 19 |
ソースコード
S = input()
ans = 0
for s in S :
if int(s) in [i for i in range(10)] :
ans += int(s)
print(ans)
kawacchu