結果
問題 |
No.289 数字を全て足そう
|
ユーザー |
![]() |
提出日時 | 2016-03-14 21:42:50 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 17 ms / 1,000 ms |
コード長 | 89 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-08 00:48:27 |
合計ジャッジ時間 | 1,330 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#coding:utf-8 n=raw_input() ans=0 for i in n: if i.isdigit(): ans+=int(i) print ans