結果

問題 No.2239 Friday
ユーザー Inoue hayateInoue hayate
提出日時 2023-03-14 13:48:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 53,812 KB
最終ジャッジ日時 2024-09-18 08:02:08
合計ジャッジ時間 1,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,360 KB
testcase_01 WA -
testcase_02 AC 36 ms
52,412 KB
testcase_03 AC 33 ms
53,492 KB
testcase_04 AC 33 ms
52,884 KB
testcase_05 WA -
testcase_06 AC 36 ms
53,312 KB
testcase_07 AC 34 ms
52,836 KB
testcase_08 WA -
testcase_09 AC 33 ms
53,004 KB
testcase_10 AC 34 ms
52,428 KB
testcase_11 AC 34 ms
53,812 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 34 ms
52,744 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 38 ms
52,244 KB
testcase_18 WA -
testcase_19 AC 35 ms
53,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


a, b = map(int, input().split())

natural = 0
unnatural = 0

if a==b:
    natural = a+b
else:
    if a>b:
        natural = b*2
        unnatural = a-b
    else:
        natural = a*2
        unnatural = b-a

print(abs(natural - unnatural))
        
0