結果

問題 No.3062 A + B
ユーザー masa_aamasa_aa
提出日時 2020-10-07 17:52:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 45 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 86,976 KB
実行使用メモリ 79,092 KB
最終ジャッジ日時 2023-09-27 09:20:32
合計ジャッジ時間 2,035 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,224 KB
testcase_01 AC 77 ms
71,184 KB
testcase_02 AC 80 ms
71,128 KB
testcase_03 AC 71 ms
71,292 KB
testcase_04 AC 71 ms
71,132 KB
testcase_05 AC 71 ms
71,496 KB
testcase_06 AC 74 ms
71,340 KB
testcase_07 AC 72 ms
71,440 KB
testcase_08 RE -
testcase_09 AC 70 ms
71,328 KB
testcase_10 AC 73 ms
71,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = input().split()
a += b
print(eval(a))
0