結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,596 KB
testcase_01 AC 34 ms
53,820 KB
testcase_02 AC 35 ms
53,156 KB
testcase_03 AC 36 ms
53,620 KB
testcase_04 AC 40 ms
52,136 KB
testcase_05 AC 38 ms
53,620 KB
testcase_06 AC 35 ms
52,920 KB
testcase_07 AC 38 ms
53,880 KB
testcase_08 AC 36 ms
51,876 KB
testcase_09 AC 35 ms
52,072 KB
testcase_10 AC 35 ms
52,608 KB
testcase_11 AC 35 ms
51,808 KB
testcase_12 AC 34 ms
52,688 KB
testcase_13 AC 35 ms
53,420 KB
testcase_14 AC 33 ms
53,140 KB
testcase_15 AC 34 ms
51,812 KB
testcase_16 AC 38 ms
52,948 KB
testcase_17 AC 39 ms
53,072 KB
testcase_18 AC 37 ms
53,528 KB
testcase_19 AC 34 ms
53,020 KB
testcase_20 AC 33 ms
52,484 KB
testcase_21 AC 34 ms
52,684 KB
testcase_22 AC 35 ms
52,388 KB
testcase_23 AC 36 ms
53,328 KB
testcase_24 AC 34 ms
53,112 KB
testcase_25 AC 37 ms
54,308 KB
testcase_26 AC 39 ms
53,624 KB
testcase_27 AC 39 ms
52,376 KB
testcase_28 AC 37 ms
53,896 KB
testcase_29 AC 35 ms
52,988 KB
testcase_30 AC 34 ms
53,008 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