結果

問題 No.2103 ±1s Game
ユーザー roarisroaris
提出日時 2022-10-21 23:22:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-07-01 07:36:05
合計ジャッジ時間 2,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,760 KB
testcase_01 AC 38 ms
53,148 KB
testcase_02 AC 38 ms
52,384 KB
testcase_03 AC 38 ms
52,068 KB
testcase_04 AC 38 ms
52,200 KB
testcase_05 AC 38 ms
53,364 KB
testcase_06 AC 39 ms
53,072 KB
testcase_07 AC 38 ms
52,280 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
53,040 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,396 KB
testcase_13 WA -
testcase_14 AC 37 ms
52,876 KB
testcase_15 AC 38 ms
52,032 KB
testcase_16 AC 38 ms
52,344 KB
testcase_17 AC 38 ms
51,632 KB
testcase_18 AC 38 ms
53,644 KB
testcase_19 AC 38 ms
52,272 KB
testcase_20 WA -
testcase_21 AC 38 ms
51,564 KB
testcase_22 WA -
testcase_23 AC 38 ms
52,304 KB
testcase_24 AC 37 ms
52,436 KB
testcase_25 AC 38 ms
51,692 KB
testcase_26 AC 38 ms
51,616 KB
testcase_27 AC 39 ms
52,008 KB
testcase_28 AC 38 ms
53,248 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 38 ms
53,532 KB
testcase_32 WA -
testcase_33 AC 37 ms
51,912 KB
testcase_34 WA -
testcase_35 AC 38 ms
52,212 KB
testcase_36 AC 38 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y, K, P = map(int, input().split())

if Y%2==1:
    if P==1:
        P = -1
    else:
        P = 1

if (K%2==0 and P==1) or (K%2==1 and P==-1):
    c = 1+max(0, Y-K-1)
else:
    c = max(0, Y-K)
    
if c%2==0:
    Q = 1
else:
    Q = -1

if P==Q:
    print('Alice')
else:
    print('Bob')
0