結果
| 問題 |
No.289 数字を全て足そう
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-01-30 22:30:10 |
| 言語 | Python2 (2.7.18) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 114 bytes |
| コンパイル時間 | 359 ms |
| コンパイル使用メモリ | 6,784 KB |
| 実行使用メモリ | 6,144 KB |
| 最終ジャッジ日時 | 2024-12-24 00:04:55 |
| 合計ジャッジ時間 | 1,202 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 21 |
ソースコード
s = raw_input.split()
ans=0
for i in s:
if i in [str(j) for j in range(10)]:
ans += int(i)
print ans