結果
| 問題 | No.289 数字を全て足そう |
| コンテスト | |
| ユーザー |
akasatananana
|
| 提出日時 | 2019-09-19 13:49:46 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 70 bytes |
| 記録 | |
| コンパイル時間 | 305 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 16,000 KB |
| 最終ジャッジ日時 | 2026-08-18 00:10:06 |
| 合計ジャッジ時間 | 4,845 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | AC * 2 WA * 19 |
コンパイルメッセージ
Main.py:6: SyntaxWarning: "\d" is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\d"? A raw string is also an option. if i=="\d":
ソースコード
a=input()
b=0
for i in a:
if i=="\d":
b+=int(i)
print(b)
akasatananana