結果
| 問題 | No.8124 A+B |
| コンテスト | |
| ユーザー |
nikoro256
|
| 提出日時 | 2026-04-01 23:05:23 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 135 bytes |
| 記録 | |
| コンパイル時間 | 132 ms |
| コンパイル使用メモリ | 85,436 KB |
| 実行使用メモリ | 138,924 KB |
| 最終ジャッジ日時 | 2026-04-01 23:05:31 |
| 合計ジャッジ時間 | 3,824 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | WA * 6 |
ソースコード
A,B=map(str,input().split())
if A.isnumeric() and B.isnumeric():
print(int(A)+int(B))
else:
if " " in A:
assert 0==1
print(A+B)
nikoro256