結果

問題 No.1569 Nixoracci's Number
ユーザー irumo8202irumo8202
提出日時 2022-02-16 20:13:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,800 KB
最終ジャッジ日時 2024-06-29 07:18:29
合計ジャッジ時間 15,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
43,792 KB
testcase_01 AC 516 ms
43,536 KB
testcase_02 AC 513 ms
43,408 KB
testcase_03 AC 513 ms
43,532 KB
testcase_04 AC 514 ms
43,780 KB
testcase_05 AC 521 ms
43,664 KB
testcase_06 AC 514 ms
43,660 KB
testcase_07 AC 512 ms
43,788 KB
testcase_08 AC 508 ms
43,528 KB
testcase_09 AC 509 ms
43,540 KB
testcase_10 AC 502 ms
43,528 KB
testcase_11 AC 505 ms
43,532 KB
testcase_12 AC 502 ms
43,788 KB
testcase_13 AC 509 ms
43,536 KB
testcase_14 AC 510 ms
43,788 KB
testcase_15 AC 499 ms
43,796 KB
testcase_16 AC 490 ms
43,668 KB
testcase_17 AC 499 ms
43,800 KB
testcase_18 AC 503 ms
43,540 KB
testcase_19 AC 501 ms
43,540 KB
testcase_20 AC 512 ms
43,792 KB
testcase_21 AC 515 ms
43,792 KB
testcase_22 AC 527 ms
43,796 KB
testcase_23 AC 516 ms
43,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.append(np.bitwise_xor.reduce(A))

print(A[(K - 1) % (N + 1)])
0