結果

問題 No.383 レーティング
ユーザー Justinlam33Justinlam33
提出日時 2017-04-12 16:32:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 111 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 10,700 KB
実行使用メモリ 7,952 KB
最終ジャッジ日時 2023-09-25 13:06:06
合計ジャッジ時間 1,292 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 15 ms
7,808 KB
testcase_02 AC 15 ms
7,776 KB
testcase_03 WA -
testcase_04 AC 15 ms
7,900 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 15 ms
7,776 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 15 ms
7,932 KB
testcase_12 AC 16 ms
7,716 KB
testcase_13 AC 15 ms
7,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

str=input()
a,b=str.split()
a=int(a)
b=int(b)
if (a>b):print(b-a)
elif(a<b):print('+',abs(a-b))
else:print('0')
0