結果
問題 |
No.289 数字を全て足そう
|
ユーザー |
![]() |
提出日時 | 2018-12-07 02:01:34 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 109 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-14 03:09:29 |
合計ジャッジ時間 | 1,656 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 21 |
ソースコード
s=list(input()) a=0 for t in int(s) : if isinstance(t,int): a=a+t else : a=a print(a)