結果

問題 No.153 石の山
ユーザー rlangevinrlangevin
提出日時 2023-07-12 12:04:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 56,992 KB
最終ジャッジ日時 2024-09-14 02:01:12
合計ジャッジ時間 2,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,736 KB
testcase_01 AC 47 ms
54,908 KB
testcase_02 AC 46 ms
54,908 KB
testcase_03 AC 46 ms
55,872 KB
testcase_04 AC 45 ms
54,792 KB
testcase_05 AC 46 ms
55,292 KB
testcase_06 AC 46 ms
56,104 KB
testcase_07 AC 46 ms
56,992 KB
testcase_08 AC 46 ms
55,936 KB
testcase_09 AC 46 ms
54,780 KB
testcase_10 AC 45 ms
55,352 KB
testcase_11 AC 46 ms
56,124 KB
testcase_12 AC 46 ms
56,740 KB
testcase_13 AC 45 ms
56,044 KB
testcase_14 AC 45 ms
55,560 KB
testcase_15 AC 47 ms
55,656 KB
testcase_16 AC 45 ms
55,308 KB
testcase_17 AC 45 ms
55,056 KB
testcase_18 AC 46 ms
56,496 KB
testcase_19 AC 46 ms
55,372 KB
testcase_20 AC 45 ms
56,344 KB
testcase_21 AC 44 ms
54,656 KB
testcase_22 AC 45 ms
55,992 KB
testcase_23 AC 44 ms
54,652 KB
testcase_24 AC 45 ms
55,684 KB
testcase_25 AC 45 ms
55,628 KB
testcase_26 AC 46 ms
56,584 KB
testcase_27 AC 46 ms
55,160 KB
testcase_28 AC 47 ms
56,520 KB
testcase_29 AC 46 ms
54,856 KB
testcase_30 AC 45 ms
54,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
from functools import lru_cache

@lru_cache(maxsize=None)
def f(n):
    if n == 1:
        return 0
    S = set()
    S.add(f(n//2)^f((n+1)//2))
    if n >= 3:
        S.add(f(n//3)^f((n+1)//3)^f((n+2)//3))
    
    now = 0
    while True:
        if now not in S:
            return now
        now += 1

N = int(input())
print("A") if f(N) else print("B")
0