結果

問題 No.3058 M + D Problem
ユーザー ShirotsumeShirotsume
提出日時 2021-11-15 13:23:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 44 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 53,312 KB
最終ジャッジ日時 2024-05-08 10:30:03
合計ジャッジ時間 1,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,088 KB
testcase_01 AC 35 ms
52,144 KB
testcase_02 AC 39 ms
52,580 KB
testcase_03 AC 36 ms
52,368 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,152 KB
testcase_06 AC 36 ms
52,324 KB
testcase_07 AC 34 ms
52,140 KB
testcase_08 AC 35 ms
52,704 KB
testcase_09 AC 36 ms
52,640 KB
testcase_10 AC 35 ms
52,484 KB
testcase_11 AC 35 ms
52,372 KB
testcase_12 AC 35 ms
53,312 KB
testcase_13 AC 34 ms
52,556 KB
testcase_14 AC 34 ms
53,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m, d = map(int,input().split())
print(m + d)
0