結果

問題 No.669 対決!!! 飲み比べ
ユーザー roarisroaris
提出日時 2020-11-26 10:48:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 53,812 KB
最終ジャッジ日時 2024-07-23 20:44:25
合計ジャッジ時間 2,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,976 KB
testcase_01 AC 38 ms
52,396 KB
testcase_02 AC 39 ms
52,576 KB
testcase_03 AC 39 ms
52,184 KB
testcase_04 AC 39 ms
52,268 KB
testcase_05 AC 42 ms
52,156 KB
testcase_06 AC 38 ms
53,144 KB
testcase_07 AC 39 ms
52,384 KB
testcase_08 AC 40 ms
53,004 KB
testcase_09 AC 38 ms
52,476 KB
testcase_10 AC 38 ms
52,628 KB
testcase_11 AC 39 ms
52,364 KB
testcase_12 AC 37 ms
52,736 KB
testcase_13 AC 38 ms
53,184 KB
testcase_14 AC 38 ms
52,356 KB
testcase_15 AC 39 ms
52,100 KB
testcase_16 AC 38 ms
52,448 KB
testcase_17 AC 39 ms
53,432 KB
testcase_18 AC 39 ms
53,812 KB
testcase_19 AC 38 ms
52,372 KB
testcase_20 AC 39 ms
52,452 KB
testcase_21 AC 40 ms
52,444 KB
testcase_22 AC 39 ms
52,156 KB
testcase_23 AC 39 ms
53,052 KB
testcase_24 AC 38 ms
52,988 KB
testcase_25 AC 40 ms
52,328 KB
testcase_26 AC 39 ms
52,848 KB
testcase_27 AC 38 ms
52,944 KB
testcase_28 AC 39 ms
52,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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

if G!=0:
    print('YES')
else:
    print('NO')
0