結果

問題 No.669 対決!!! 飲み比べ
ユーザー 👑 KazunKazun
提出日時 2020-09-18 01:09:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-06-22 07:25:22
合計ジャッジ時間 1,884 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,212 KB
testcase_01 AC 31 ms
53,292 KB
testcase_02 AC 33 ms
52,468 KB
testcase_03 AC 31 ms
52,860 KB
testcase_04 AC 32 ms
53,148 KB
testcase_05 AC 34 ms
52,204 KB
testcase_06 AC 35 ms
52,788 KB
testcase_07 AC 33 ms
52,620 KB
testcase_08 AC 33 ms
52,284 KB
testcase_09 AC 32 ms
52,616 KB
testcase_10 AC 34 ms
52,028 KB
testcase_11 AC 34 ms
52,548 KB
testcase_12 AC 32 ms
52,736 KB
testcase_13 AC 35 ms
53,140 KB
testcase_14 AC 32 ms
53,248 KB
testcase_15 AC 32 ms
52,544 KB
testcase_16 AC 32 ms
52,532 KB
testcase_17 AC 35 ms
52,516 KB
testcase_18 AC 32 ms
52,884 KB
testcase_19 AC 32 ms
53,904 KB
testcase_20 AC 32 ms
53,904 KB
testcase_21 AC 31 ms
52,336 KB
testcase_22 AC 31 ms
52,864 KB
testcase_23 AC 31 ms
53,944 KB
testcase_24 AC 33 ms
54,028 KB
testcase_25 AC 33 ms
52,076 KB
testcase_26 AC 32 ms
51,940 KB
testcase_27 AC 32 ms
53,696 KB
testcase_28 AC 31 ms
52,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))

G=0
for a in A:
    G^=a%(K+1)

if G:
    print("YES")
else:
    print("NO")
0