結果

問題 No.3058 M + D Problem
ユーザー koba-e964koba-e964
提出日時 2020-04-01 22:34:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 46 bytes
コンパイル時間 914 ms
コンパイル使用メモリ 86,832 KB
実行使用メモリ 71,380 KB
最終ジャッジ日時 2023-09-09 19:13:11
合計ジャッジ時間 4,273 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,052 KB
testcase_01 AC 69 ms
71,360 KB
testcase_02 AC 68 ms
70,888 KB
testcase_03 AC 67 ms
71,344 KB
testcase_04 WA -
testcase_05 AC 69 ms
71,164 KB
testcase_06 AC 69 ms
71,192 KB
testcase_07 AC 68 ms
71,040 KB
testcase_08 AC 68 ms
71,380 KB
testcase_09 AC 68 ms
71,192 KB
testcase_10 AC 68 ms
71,188 KB
testcase_11 AC 69 ms
71,152 KB
testcase_12 AC 68 ms
71,060 KB
testcase_13 AC 69 ms
71,160 KB
testcase_14 AC 68 ms
71,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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