結果

問題 No.946 箱箱箱
ユーザー maspymaspy
提出日時 2020-03-31 16:35:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,852 KB
最終ジャッジ日時 2024-06-24 20:03:59
合計ジャッジ時間 35,260 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 496 ms
44,200 KB
testcase_01 AC 506 ms
44,332 KB
testcase_02 AC 501 ms
44,332 KB
testcase_03 AC 651 ms
44,076 KB
testcase_04 AC 637 ms
44,076 KB
testcase_05 AC 499 ms
44,460 KB
testcase_06 AC 638 ms
44,336 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 575 ms
44,144 KB
testcase_10 AC 627 ms
44,584 KB
testcase_11 AC 491 ms
44,460 KB
testcase_12 AC 545 ms
44,080 KB
testcase_13 WA -
testcase_14 AC 633 ms
44,176 KB
testcase_15 AC 631 ms
44,332 KB
testcase_16 AC 624 ms
44,332 KB
testcase_17 AC 622 ms
44,076 KB
testcase_18 AC 634 ms
44,208 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 578 ms
44,212 KB
testcase_22 AC 623 ms
44,216 KB
testcase_23 AC 642 ms
44,460 KB
testcase_24 AC 587 ms
44,588 KB
testcase_25 WA -
testcase_26 AC 619 ms
44,340 KB
testcase_27 WA -
testcase_28 AC 674 ms
44,592 KB
testcase_29 AC 625 ms
44,208 KB
testcase_30 WA -
testcase_31 AC 629 ms
44,596 KB
testcase_32 WA -
testcase_33 AC 631 ms
44,080 KB
testcase_34 AC 640 ms
44,588 KB
testcase_35 AC 625 ms
44,456 KB
testcase_36 AC 631 ms
44,084 KB
testcase_37 AC 631 ms
44,080 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 640 ms
44,076 KB
testcase_42 WA -
testcase_43 AC 650 ms
44,464 KB
testcase_44 WA -
testcase_45 AC 650 ms
44,084 KB
testcase_46 AC 642 ms
44,344 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 495 ms
44,348 KB
testcase_52 WA -
testcase_53 AC 499 ms
44,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np
N, *A = map(int, read().split())

dp = np.zeros(N + 1, np.int32)
for i, x in enumerate(A[::-1]):
    dp[:i + 1] ^= x
    values = np.unique(dp[: i + 1])
    n = len(values)
    ind = np.where(np.arange(n) != values)[0]
    dp[i + 1] = n if not len(ind) else ind[0]

answer = 'Takanashi' if dp[0] else 'Takahashi'
print(answer)
0