結果
| 問題 |
No.289 数字を全て足そう
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-25 15:44:05 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 18 ms / 1,000 ms |
| コード長 | 135 bytes |
| コンパイル時間 | 322 ms |
| コンパイル使用メモリ | 7,076 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-08 00:46:13 |
| 合計ジャッジ時間 | 1,886 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
#coding: utf-8 ##yuki_289 s=raw_input() ls=list(s) n=0 for i in xrange(len(ls)): if ls[i].isdigit()==True: n+=int(ls[i]) print n