結果

問題 No.2239 Friday
ユーザー neterukunneterukun
提出日時 2023-03-10 21:38:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-09-18 03:51:59
合計ジャッジ時間 1,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,380 KB
testcase_01 AC 37 ms
51,812 KB
testcase_02 AC 33 ms
52,624 KB
testcase_03 AC 35 ms
52,292 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 34 ms
52,168 KB
testcase_07 AC 32 ms
52,140 KB
testcase_08 AC 33 ms
51,956 KB
testcase_09 AC 32 ms
53,608 KB
testcase_10 AC 32 ms
52,432 KB
testcase_11 AC 32 ms
52,236 KB
testcase_12 AC 33 ms
51,900 KB
testcase_13 AC 35 ms
52,444 KB
testcase_14 AC 32 ms
52,336 KB
testcase_15 AC 35 ms
53,304 KB
testcase_16 AC 34 ms
53,236 KB
testcase_17 AC 34 ms
53,652 KB
testcase_18 AC 32 ms
53,088 KB
testcase_19 AC 33 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


match = min(a, b) * 2
nokori = a + b - match

if nokori >= match:
    print(nokori - match)
else:
    if (match - nokori) % 2 == 1:
        print(1)
    else:
        print(0)
0