結果

問題 No.669 対決!!! 飲み比べ
ユーザー roarisroaris
提出日時 2020-11-26 10:47:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 190 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 54,160 KB
最終ジャッジ日時 2024-07-23 20:44:20
合計ジャッジ時間 2,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 38 ms
53,076 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
52,028 KB
testcase_06 AC 38 ms
52,144 KB
testcase_07 AC 38 ms
52,396 KB
testcase_08 AC 39 ms
52,868 KB
testcase_09 WA -
testcase_10 AC 38 ms
52,628 KB
testcase_11 AC 38 ms
53,080 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 38 ms
52,752 KB
testcase_14 AC 37 ms
52,968 KB
testcase_15 AC 37 ms
52,276 KB
testcase_16 AC 37 ms
53,372 KB
testcase_17 AC 37 ms
52,024 KB
testcase_18 AC 38 ms
52,064 KB
testcase_19 AC 37 ms
52,000 KB
testcase_20 AC 37 ms
52,288 KB
testcase_21 AC 37 ms
51,964 KB
testcase_22 AC 38 ms
52,824 KB
testcase_23 AC 39 ms
52,552 KB
testcase_24 AC 38 ms
52,620 KB
testcase_25 AC 37 ms
53,072 KB
testcase_26 AC 38 ms
52,892 KB
testcase_27 AC 38 ms
52,204 KB
testcase_28 AC 38 ms
52,696 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

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