結果

問題 No.2239 Friday
ユーザー NPNP
提出日時 2024-03-15 14:29:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 53,496 KB
最終ジャッジ日時 2024-09-30 00:01:46
合計ジャッジ時間 1,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,992 KB
testcase_01 AC 35 ms
52,180 KB
testcase_02 AC 34 ms
52,124 KB
testcase_03 AC 34 ms
52,192 KB
testcase_04 WA -
testcase_05 AC 34 ms
53,192 KB
testcase_06 AC 34 ms
51,804 KB
testcase_07 AC 34 ms
51,944 KB
testcase_08 AC 35 ms
52,216 KB
testcase_09 AC 34 ms
53,484 KB
testcase_10 AC 36 ms
51,552 KB
testcase_11 AC 36 ms
52,160 KB
testcase_12 AC 35 ms
52,064 KB
testcase_13 AC 35 ms
52,876 KB
testcase_14 AC 34 ms
53,232 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 34 ms
52,012 KB
testcase_18 WA -
testcase_19 AC 33 ms
52,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def min_difference(A, B):
    if A > B:
        A, B = B, A
    if B <= 2 * A:
        return (B - A) % 2
    else:
        return B - 3 * A


A, B = map(int, input().split())
print(min_difference(A, B))
0