結果

問題 No.669 対決!!! 飲み比べ
ユーザー rarpipipirarpipipi
提出日時 2023-12-31 00:25:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-09-27 16:56:27
合計ジャッジ時間 3,284 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,676 KB
testcase_01 AC 40 ms
53,132 KB
testcase_02 AC 40 ms
52,628 KB
testcase_03 AC 44 ms
53,084 KB
testcase_04 AC 41 ms
53,804 KB
testcase_05 AC 40 ms
52,672 KB
testcase_06 AC 40 ms
52,112 KB
testcase_07 AC 40 ms
52,612 KB
testcase_08 AC 40 ms
52,680 KB
testcase_09 AC 40 ms
52,940 KB
testcase_10 AC 40 ms
52,324 KB
testcase_11 AC 40 ms
52,004 KB
testcase_12 AC 41 ms
52,604 KB
testcase_13 AC 40 ms
53,480 KB
testcase_14 AC 40 ms
53,680 KB
testcase_15 AC 41 ms
52,508 KB
testcase_16 AC 40 ms
52,972 KB
testcase_17 AC 40 ms
53,140 KB
testcase_18 AC 40 ms
51,888 KB
testcase_19 AC 40 ms
54,088 KB
testcase_20 AC 40 ms
52,264 KB
testcase_21 AC 40 ms
52,476 KB
testcase_22 AC 41 ms
52,448 KB
testcase_23 AC 42 ms
52,524 KB
testcase_24 AC 41 ms
52,212 KB
testcase_25 AC 42 ms
52,952 KB
testcase_26 AC 40 ms
53,284 KB
testcase_27 AC 41 ms
52,332 KB
testcase_28 AC 42 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))

work=0
for i in range(n):
    work^=a[i]%(k+1)

print("YES" if work else "NO")
0