結果

問題 No.353 ヘイトプラス
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-09 19:45:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 57 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 71,472 KB
最終ジャッジ日時 2023-08-30 00:16:00
合計ジャッジ時間 2,150 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,340 KB
testcase_01 AC 67 ms
71,188 KB
testcase_02 AC 71 ms
71,256 KB
testcase_03 AC 67 ms
71,348 KB
testcase_04 AC 69 ms
71,440 KB
testcase_05 AC 69 ms
71,472 KB
testcase_06 AC 69 ms
71,456 KB
testcase_07 AC 69 ms
71,440 KB
testcase_08 AC 69 ms
71,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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