結果
| 問題 |
No.289 数字を全て足そう
|
| コンテスト | |
| ユーザー |
ppp
|
| 提出日時 | 2016-01-20 16:35:39 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 106 bytes |
| コンパイル時間 | 82 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2024-09-21 14:48:22 |
| 合計ジャッジ時間 | 1,207 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 3 WA * 18 |
ソースコード
lst = list(str(raw_input())) ans = 0 for i in range (0, 9+1): if str(i) in lst: ans = ans + i print ans
ppp