結果

問題 No.353 ヘイトプラス
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-09 19:45:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 57 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 53,568 KB
最終ジャッジ日時 2024-06-09 23:26:23
合計ジャッジ時間 1,529 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,004 KB
testcase_01 AC 35 ms
53,568 KB
testcase_02 AC 33 ms
52,068 KB
testcase_03 AC 34 ms
52,560 KB
testcase_04 AC 33 ms
52,204 KB
testcase_05 AC 34 ms
53,332 KB
testcase_06 AC 33 ms
52,832 KB
testcase_07 AC 34 ms
52,704 KB
testcase_08 AC 34 ms
51,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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