結果
| 問題 | No.8124 A+B |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2026-04-01 21:55:38 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 111 bytes |
| 記録 | |
| コンパイル時間 | 206 ms |
| コンパイル使用メモリ | 85,312 KB |
| 実行使用メモリ | 139,452 KB |
| 最終ジャッジ日時 | 2026-04-01 21:55:40 |
| 合計ジャッジ時間 | 1,605 ms |
|
ジャッジサーバーID (参考情報) |
judge4_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | WA * 6 |
ソースコード
A, B = input().split()
if not A.isdigit():
A = 3487
if not B.isdigit():
B = 8124
print(int(A)+int(B))
detteiuu