結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 458 ms
11,008 KB
testcase_04 AC 488 ms
11,136 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 485 ms
11,136 KB
testcase_07 AC 477 ms
11,008 KB
testcase_08 AC 486 ms
10,880 KB
testcase_09 AC 344 ms
10,880 KB
testcase_10 AC 456 ms
11,136 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 301 ms
10,880 KB
testcase_13 AC 485 ms
11,136 KB
testcase_14 AC 481 ms
11,008 KB
testcase_15 AC 459 ms
11,008 KB
testcase_16 AC 454 ms
11,136 KB
testcase_17 AC 451 ms
11,136 KB
testcase_18 WA -
testcase_19 AC 415 ms
11,008 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 379 ms
11,136 KB
testcase_22 AC 464 ms
11,008 KB
testcase_23 AC 489 ms
11,136 KB
testcase_24 AC 379 ms
11,008 KB
testcase_25 AC 379 ms
10,880 KB
testcase_26 AC 444 ms
11,136 KB
testcase_27 AC 457 ms
11,136 KB
testcase_28 AC 446 ms
11,008 KB
testcase_29 AC 484 ms
11,136 KB
testcase_30 AC 484 ms
10,880 KB
testcase_31 AC 482 ms
11,136 KB
testcase_32 AC 449 ms
11,136 KB
testcase_33 AC 462 ms
11,008 KB
testcase_34 AC 483 ms
11,008 KB
testcase_35 AC 483 ms
11,008 KB
testcase_36 AC 485 ms
11,136 KB
testcase_37 AC 483 ms
11,008 KB
testcase_38 AC 381 ms
11,008 KB
testcase_39 AC 453 ms
11,008 KB
testcase_40 WA -
testcase_41 AC 462 ms
11,008 KB
testcase_42 AC 458 ms
11,008 KB
testcase_43 AC 484 ms
11,008 KB
testcase_44 AC 382 ms
10,880 KB
testcase_45 AC 488 ms
11,008 KB
testcase_46 AC 484 ms
11,008 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 30 ms
10,752 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(i,n):
            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