結果

問題 No.153 石の山
ユーザー mbanmban
提出日時 2017-07-26 02:29:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-10-09 17:30:10
合計ジャッジ時間 2,489 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,532 KB
testcase_01 AC 43 ms
53,248 KB
testcase_02 AC 39 ms
52,816 KB
testcase_03 AC 38 ms
51,824 KB
testcase_04 AC 37 ms
53,000 KB
testcase_05 AC 39 ms
53,688 KB
testcase_06 AC 38 ms
52,708 KB
testcase_07 AC 39 ms
52,744 KB
testcase_08 AC 39 ms
53,168 KB
testcase_09 AC 39 ms
51,948 KB
testcase_10 AC 39 ms
53,240 KB
testcase_11 AC 38 ms
53,572 KB
testcase_12 AC 38 ms
52,640 KB
testcase_13 AC 38 ms
52,956 KB
testcase_14 AC 39 ms
52,876 KB
testcase_15 AC 38 ms
52,676 KB
testcase_16 AC 38 ms
53,620 KB
testcase_17 AC 38 ms
53,012 KB
testcase_18 AC 38 ms
52,548 KB
testcase_19 AC 38 ms
52,860 KB
testcase_20 AC 38 ms
52,492 KB
testcase_21 AC 39 ms
52,160 KB
testcase_22 AC 38 ms
52,316 KB
testcase_23 AC 37 ms
53,288 KB
testcase_24 AC 38 ms
52,556 KB
testcase_25 AC 39 ms
53,568 KB
testcase_26 AC 38 ms
52,948 KB
testcase_27 AC 39 ms
52,192 KB
testcase_28 AC 38 ms
52,436 KB
testcase_29 AC 39 ms
53,164 KB
testcase_30 AC 39 ms
53,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
grundy = [-1, 0, 1]
for i in range(101):
    if i == 0 or i == 1 or i == 2:
        continue;
    if i % 2 == 0:
        a = 0
    else:
        a = grundy[i // 2] ^ grundy[i // 2 + 1]
    if i % 3 == 1:
        b = grundy[i // 3 + 1]
    else:
        b = grundy[i // 3]
    g = 0
    while g == a or g == b:
        g+=1
    grundy.append(g)
print("B" if grundy[N]==0 else "A")
0