結果
| 問題 | No.289 数字を全て足そう |
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 2020-05-03 23:22:19 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 68 ms / 1,000 ms |
| + 537µs | |
| コード長 | 82 bytes |
| 記録 | |
| コンパイル時間 | 774 ms |
| コンパイル使用メモリ | 96,104 KB |
| 実行使用メモリ | 83,584 KB |
| 最終ジャッジ日時 | 2026-07-27 15:07:20 |
| 合計ジャッジ時間 | 3,950 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
S = input() ns = [int(x) for x in filter(str.isdecimal, list(S))] print(sum(ns))
splash9494