結果

問題 No.153 石の山
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-08 14:20:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 567 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-11-25 06:51:05
合計ジャッジ時間 2,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,240 KB
testcase_01 AC 39 ms
53,032 KB
testcase_02 AC 39 ms
51,756 KB
testcase_03 AC 38 ms
52,988 KB
testcase_04 AC 39 ms
52,144 KB
testcase_05 AC 39 ms
53,488 KB
testcase_06 AC 39 ms
53,052 KB
testcase_07 AC 38 ms
52,836 KB
testcase_08 AC 37 ms
53,248 KB
testcase_09 AC 37 ms
52,676 KB
testcase_10 AC 37 ms
53,024 KB
testcase_11 AC 38 ms
52,408 KB
testcase_12 AC 38 ms
53,288 KB
testcase_13 AC 38 ms
53,352 KB
testcase_14 AC 37 ms
52,468 KB
testcase_15 AC 38 ms
52,620 KB
testcase_16 AC 38 ms
52,824 KB
testcase_17 AC 38 ms
53,904 KB
testcase_18 AC 38 ms
53,156 KB
testcase_19 AC 37 ms
52,884 KB
testcase_20 AC 38 ms
53,284 KB
testcase_21 AC 37 ms
54,028 KB
testcase_22 AC 37 ms
52,124 KB
testcase_23 AC 38 ms
53,064 KB
testcase_24 AC 37 ms
53,084 KB
testcase_25 AC 38 ms
52,560 KB
testcase_26 AC 39 ms
52,424 KB
testcase_27 AC 40 ms
53,188 KB
testcase_28 AC 39 ms
52,868 KB
testcase_29 AC 39 ms
52,828 KB
testcase_30 AC 38 ms
52,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
g=[0]*(n+1)

def  ni(x):
    if x%2:return x//2,x//2 + 1
    else:return x//2,x//2

def  san(x):
    t=x//3
    if x%3 == 0:
        return t,t,t
    elif t*3 + 1 == x:
        return t,t,t+1
    elif t*3 + 2 == x:
        return t,t+1,t+1

    return False
    

for i in range(2,n+1):
    s = set()
    nit = ni(i)
    t = 0
    for j in nit:
        t^=g[j]
    s.add(t)
    t=0
    sat = san(i)
    for j in sat:
        t^=g[j]
    s.add(t)
    p = 0
    while p in s:
        p +=  1
    # print(p,i)
    g[i] = p

print('A' if g[n] > 0 else 'B')
0