結果
| 問題 | No.289 数字を全て足そう |
| コンテスト | |
| ユーザー |
sam_kino
|
| 提出日時 | 2016-08-27 15:53:26 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 443 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,624 KB |
| 最終ジャッジ日時 | 2026-05-08 16:48:50 |
| 合計ジャッジ時間 | 4,384 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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