結果
| 問題 | No.485 方程式のお勉強 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-03-19 16:52:28 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 512 ms |
| コンパイル使用メモリ | 20,684 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-03-26 06:07:02 |
| 合計ジャッジ時間 | 3,006 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 4 |
| other | WA * 13 |
ソースコード
first=input()
split_first=first.split()
A=int(split_first[0])
B=int(split_first[1])
x=A+B
if isinstance(x,int):
print(x)
else:
print('NO')