結果

問題 No.3112 Decrement or Mod Game
ユーザー Kevgen
提出日時 2025-04-18 22:02:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2025-04-18 22:02:29
合計ジャッジ時間 3,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 43 WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(a, b):
    steps = 0
    while True:
        if a < b:
            a, b = b, a
        if b == 0:
            return "Alice" if steps % 2 == 0 else "Bob"
        if a >= 2 * b:
            return "Alice" if steps % 2 == 0 else "Bob"
        if a % b == 0:
            return "Alice" if steps % 2 == 0 else "Bob"
        steps += 1
        a %= b

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