結果

問題 No.8058 M + D Problem
ユーザー ShirotsumeShirotsume
提出日時 2021-11-15 13:23:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 44 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2024-12-14 13:42:27
合計ジャッジ時間 2,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,628 KB
testcase_01 AC 40 ms
53,368 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 39 ms
52,344 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,528 KB
testcase_06 AC 39 ms
51,876 KB
testcase_07 AC 39 ms
51,824 KB
testcase_08 AC 39 ms
52,544 KB
testcase_09 AC 39 ms
52,416 KB
testcase_10 AC 40 ms
51,828 KB
testcase_11 AC 40 ms
52,624 KB
testcase_12 AC 41 ms
53,228 KB
testcase_13 AC 39 ms
51,944 KB
testcase_14 AC 39 ms
53,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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