結果

問題 No.3062 A + B
ユーザー onakasuitacityonakasuitacity
提出日時 2020-04-01 22:22:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 103 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 86,964 KB
実行使用メモリ 71,356 KB
最終ジャッジ日時 2023-09-09 18:56:19
合計ジャッジ時間 1,975 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,268 KB
testcase_01 AC 70 ms
71,212 KB
testcase_02 WA -
testcase_03 AC 70 ms
71,020 KB
testcase_04 AC 68 ms
71,104 KB
testcase_05 AC 71 ms
71,200 KB
testcase_06 AC 71 ms
71,100 KB
testcase_07 WA -
testcase_08 AC 69 ms
71,160 KB
testcase_09 AC 68 ms
70,944 KB
testcase_10 AC 68 ms
71,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = input().split()
if int(a) > 0 and int(b) > 0:
    print(int(a+b))
else:
    print(int(a)+int(b))
0