結果
問題 | No.2103 ±1s Game |
ユーザー | zeronosu77108 |
提出日時 | 2022-10-21 22:05:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 518 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-01 06:38:34 |
合計ジャッジ時間 | 2,234 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
10,752 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 31 ms
10,880 KB |
testcase_04 | AC | 30 ms
10,752 KB |
testcase_05 | AC | 31 ms
10,752 KB |
testcase_06 | AC | 30 ms
10,880 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 30 ms
10,752 KB |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | AC | 30 ms
10,752 KB |
testcase_14 | AC | 30 ms
10,752 KB |
testcase_15 | WA | - |
testcase_16 | AC | 30 ms
10,880 KB |
testcase_17 | WA | - |
testcase_18 | AC | 30 ms
10,752 KB |
testcase_19 | AC | 30 ms
10,752 KB |
testcase_20 | AC | 31 ms
10,880 KB |
testcase_21 | AC | 29 ms
10,752 KB |
testcase_22 | AC | 30 ms
10,880 KB |
testcase_23 | AC | 29 ms
10,752 KB |
testcase_24 | AC | 30 ms
10,880 KB |
testcase_25 | AC | 30 ms
10,752 KB |
testcase_26 | AC | 30 ms
10,752 KB |
testcase_27 | AC | 29 ms
10,752 KB |
testcase_28 | WA | - |
testcase_29 | AC | 30 ms
10,880 KB |
testcase_30 | AC | 30 ms
10,880 KB |
testcase_31 | AC | 31 ms
10,752 KB |
testcase_32 | AC | 31 ms
10,752 KB |
testcase_33 | WA | - |
testcase_34 | AC | 30 ms
10,752 KB |
testcase_35 | AC | 30 ms
10,752 KB |
testcase_36 | AC | 30 ms
10,752 KB |
ソースコード
x, y, k, p = map(int, input().split()) res = x + y - k def bob(): print("Bob"); exit() def alice(): print("Alice"); exit() if (res+1)//2 >= y: if y % 2 == 1 and p == -1: alice() if y % 2 == 0 and p == 1: alice() if res//2 >= y: if y % 2 == 1 and p == 1: bob() if y % 2 == 0 and p == -1: bob() if p==1: x -= 1 else: y -= 1 if res % 2 == 0: bob() if min(x, y) >= res // 2: alice() if x < y: if (res - x) % 2 == 0 and p == -1: alice() if (res - x) % 2 == 1 and p == 1: alice() bob()