結果

問題 No.946 箱箱箱
ユーザー mkawa2mkawa2
提出日時 2019-12-13 21:34:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 806 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-27 15:32:38
合計ジャッジ時間 20,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 450 ms
11,008 KB
testcase_04 AC 488 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 481 ms
10,880 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 344 ms
10,752 KB
testcase_10 AC 450 ms
11,136 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 343 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 477 ms
10,880 KB
testcase_15 AC 456 ms
10,880 KB
testcase_16 AC 436 ms
11,008 KB
testcase_17 AC 442 ms
10,880 KB
testcase_18 AC 481 ms
10,880 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 566 ms
10,880 KB
testcase_22 AC 472 ms
10,880 KB
testcase_23 AC 483 ms
11,008 KB
testcase_24 AC 566 ms
11,008 KB
testcase_25 WA -
testcase_26 AC 453 ms
11,008 KB
testcase_27 WA -
testcase_28 AC 442 ms
10,880 KB
testcase_29 AC 483 ms
10,880 KB
testcase_30 WA -
testcase_31 AC 482 ms
10,880 KB
testcase_32 WA -
testcase_33 AC 471 ms
11,008 KB
testcase_34 AC 486 ms
10,880 KB
testcase_35 AC 488 ms
11,008 KB
testcase_36 AC 484 ms
10,880 KB
testcase_37 AC 488 ms
10,880 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 451 ms
11,008 KB
testcase_42 WA -
testcase_43 AC 484 ms
10,880 KB
testcase_44 WA -
testcase_45 AC 485 ms
10,880 KB
testcase_46 AC 481 ms
11,008 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 30 ms
10,624 KB
testcase_52 WA -
testcase_53 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
from collections import defaultdict
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    n=int(input())
    aa=[int(input()) for _ in range(n)]
    grundy=[0]*(n+1)
    for i in range(n-1,-1,-1):
        hp=[]
        s=0
        for j in range(n-1,i-1,-1):
            s^=aa[j]
            heappush(hp,grundy[j]^s)
        g=-1
        while hp:
            ng=heappop(hp)
            if ng!=g+1:break
            g=ng
        grundy[i]=g+1
    if grundy[0]:print("Takahashi")
    else:print("Takanashi")
    #print(grundy)

main()
0