結果

問題 No.946 箱箱箱
ユーザー vwxyzvwxyz
提出日時 2023-11-29 16:26:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 1,115 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 91,560 KB
最終ジャッジ日時 2024-09-26 13:31:16
合計ジャッジ時間 12,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
89,856 KB
testcase_01 AC 138 ms
89,572 KB
testcase_02 AC 136 ms
89,872 KB
testcase_03 AC 235 ms
91,504 KB
testcase_04 AC 228 ms
91,156 KB
testcase_05 AC 133 ms
89,776 KB
testcase_06 AC 227 ms
90,892 KB
testcase_07 AC 227 ms
91,328 KB
testcase_08 AC 220 ms
90,996 KB
testcase_09 AC 221 ms
90,852 KB
testcase_10 AC 220 ms
91,016 KB
testcase_11 AC 135 ms
89,536 KB
testcase_12 AC 224 ms
91,416 KB
testcase_13 AC 215 ms
91,080 KB
testcase_14 AC 222 ms
91,292 KB
testcase_15 AC 216 ms
91,408 KB
testcase_16 AC 227 ms
91,424 KB
testcase_17 AC 227 ms
91,188 KB
testcase_18 AC 223 ms
91,072 KB
testcase_19 AC 222 ms
90,924 KB
testcase_20 AC 136 ms
90,024 KB
testcase_21 AC 217 ms
90,872 KB
testcase_22 AC 221 ms
91,396 KB
testcase_23 AC 218 ms
91,428 KB
testcase_24 AC 212 ms
90,808 KB
testcase_25 AC 225 ms
91,128 KB
testcase_26 AC 216 ms
91,200 KB
testcase_27 AC 220 ms
91,180 KB
testcase_28 AC 226 ms
91,536 KB
testcase_29 AC 217 ms
91,436 KB
testcase_30 AC 215 ms
91,348 KB
testcase_31 AC 219 ms
91,004 KB
testcase_32 AC 215 ms
91,384 KB
testcase_33 AC 222 ms
91,560 KB
testcase_34 AC 219 ms
91,080 KB
testcase_35 AC 216 ms
91,172 KB
testcase_36 AC 218 ms
90,748 KB
testcase_37 AC 225 ms
91,028 KB
testcase_38 AC 229 ms
90,952 KB
testcase_39 AC 222 ms
91,128 KB
testcase_40 AC 219 ms
90,884 KB
testcase_41 AC 218 ms
91,556 KB
testcase_42 AC 218 ms
91,320 KB
testcase_43 AC 226 ms
90,972 KB
testcase_44 AC 219 ms
91,184 KB
testcase_45 AC 218 ms
90,880 KB
testcase_46 AC 224 ms
91,164 KB
testcase_47 AC 132 ms
89,672 KB
testcase_48 AC 131 ms
89,752 KB
testcase_49 AC 130 ms
89,644 KB
testcase_50 AC 129 ms
89,736 KB
testcase_51 AC 129 ms
89,892 KB
testcase_52 AC 133 ms
89,760 KB
testcase_53 AC 129 ms
89,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
#sys.set_int_max_str_digits(10**9)

N=int(readline())
A=[0]+[int(readline()) for n in range(N)]
for i in range(1,N+1):
    A[i]^=A[i-1]
dp=[0]*(N+1)
dp[N]=0
for i in range(N-1,-1,-1):
    se=set()
    for j in range(i+1,N+1):
        se.add(dp[j]^A[i]^A[j])
    while dp[i] in se:
        dp[i]+=1
if dp[0]:
    ans="Takahashi"
else:
    ans="Takanashi"
print(ans)
0