結果

問題 No.153 石の山
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-12-29 23:06:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 663 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 63,516 KB
最終ジャッジ日時 2024-09-27 16:24:17
合計ジャッジ時間 3,464 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
62,808 KB
testcase_01 AC 54 ms
62,324 KB
testcase_02 AC 54 ms
62,400 KB
testcase_03 AC 53 ms
62,148 KB
testcase_04 AC 54 ms
62,132 KB
testcase_05 AC 53 ms
61,920 KB
testcase_06 AC 52 ms
62,900 KB
testcase_07 AC 53 ms
61,568 KB
testcase_08 AC 54 ms
63,108 KB
testcase_09 AC 54 ms
62,800 KB
testcase_10 AC 55 ms
63,516 KB
testcase_11 WA -
testcase_12 AC 54 ms
61,840 KB
testcase_13 AC 52 ms
62,580 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 55 ms
62,516 KB
testcase_17 AC 54 ms
61,700 KB
testcase_18 AC 54 ms
62,508 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 55 ms
62,576 KB
testcase_22 AC 58 ms
63,268 KB
testcase_23 AC 56 ms
62,316 KB
testcase_24 AC 53 ms
62,104 KB
testcase_25 AC 53 ms
62,952 KB
testcase_26 AC 54 ms
62,660 KB
testcase_27 WA -
testcase_28 AC 52 ms
62,056 KB
testcase_29 WA -
testcase_30 AC 52 ms
62,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math,time,random
input = sys.stdin.readline

N = int(input())


mem = [-1]*(N+1)
def f(x):
    if mem[x]!=-1:
        return mem[x]
    if x%2==0:
        mem[x] = 1
        return 1
    
    if x==1:
        mem[x] = 0
        return mem[x]
    
    X = []
    n = x//2
    if n%2==0:
        X.append(f(n+1))
    else:
        X.append(f(n))

    n = x//3
    if x%3==0:
        X.append(f(n))
    elif x%3==1:
        X.append(f(n+1))
    else:
        X.append(f(n))
    mem[x] = 1 - min(X)
    return mem[x]

if f(N):
    print('A')
else:
    print('B')
0