結果

問題 No.153 石の山
ユーザー rlangevinrlangevin
提出日時 2023-07-12 08:59:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 58,716 KB
最終ジャッジ日時 2024-09-13 22:55:44
合計ジャッジ時間 2,630 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,228 KB
testcase_01 AC 45 ms
56,176 KB
testcase_02 AC 45 ms
56,108 KB
testcase_03 AC 44 ms
55,520 KB
testcase_04 AC 43 ms
55,292 KB
testcase_05 AC 44 ms
55,472 KB
testcase_06 AC 44 ms
56,236 KB
testcase_07 AC 45 ms
55,428 KB
testcase_08 AC 45 ms
55,960 KB
testcase_09 AC 45 ms
55,992 KB
testcase_10 AC 44 ms
54,984 KB
testcase_11 WA -
testcase_12 AC 44 ms
55,724 KB
testcase_13 AC 44 ms
55,336 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 45 ms
56,016 KB
testcase_18 AC 45 ms
55,892 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 43 ms
55,160 KB
testcase_23 AC 44 ms
55,780 KB
testcase_24 AC 43 ms
55,056 KB
testcase_25 AC 44 ms
55,520 KB
testcase_26 AC 45 ms
56,184 KB
testcase_27 AC 45 ms
55,760 KB
testcase_28 AC 44 ms
56,008 KB
testcase_29 AC 45 ms
55,624 KB
testcase_30 AC 43 ms
55,312 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+2)//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