結果

問題 No.383 レーティング
ユーザー miya145592miya145592
提出日時 2023-05-03 16:14:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 1,202 ms
コンパイル使用メモリ 86,652 KB
実行使用メモリ 71,356 KB
最終ジャッジ日時 2023-08-14 01:20:54
合計ジャッジ時間 1,996 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,228 KB
testcase_01 AC 59 ms
71,056 KB
testcase_02 AC 59 ms
71,356 KB
testcase_03 AC 59 ms
71,300 KB
testcase_04 AC 58 ms
71,308 KB
testcase_05 AC 58 ms
71,184 KB
testcase_06 AC 63 ms
71,300 KB
testcase_07 AC 59 ms
71,152 KB
testcase_08 AC 60 ms
71,196 KB
testcase_09 AC 58 ms
70,964 KB
testcase_10 AC 58 ms
71,160 KB
testcase_11 AC 58 ms
71,064 KB
testcase_12 AC 58 ms
71,132 KB
testcase_13 AC 58 ms
71,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
if a==b:
    print(0)
else:
    print("{:+}".format(b-a))
0