結果
| 問題 |
No.289 数字を全て足そう
|
| コンテスト | |
| ユーザー |
sam_kino
|
| 提出日時 | 2016-08-27 15:53:26 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 146 bytes |
| コンパイル時間 | 256 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-11-08 10:47:28 |
| 合計ジャッジ時間 | 1,998 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 RE * 1 |
| other | AC * 1 WA * 18 RE * 2 |
ソースコード
#coding: utf-8
sGetdat=input()
arr_datas=sGetdat.split()
nAns=0
for data in arr_datas:
if data.isdigit():
nAns +=data
print (nAns)
sam_kino