結果
| 問題 |
No.289 数字を全て足そう
|
| コンテスト | |
| ユーザー |
_manji0
|
| 提出日時 | 2022-01-14 02:00:03 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 79 bytes |
| コンパイル時間 | 166 ms |
| コンパイル使用メモリ | 82,168 KB |
| 実行使用メモリ | 66,824 KB |
| 最終ジャッジ日時 | 2024-11-18 07:20:13 |
| 合計ジャッジ時間 | 2,452 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 2 |
| other | AC * 2 RE * 19 |
ソースコード
S = [ int(i) for i in input() if int(i) in [1,2,3,4,5,6,7,8,9] ] print(sum(S))
_manji0