結果

問題 No.669 対決!!! 飲み比べ
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-14 04:32:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 55,936 KB
最終ジャッジ日時 2024-06-26 12:22:10
合計ジャッジ時間 3,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 48 ms
55,168 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 48 ms
55,680 KB
testcase_06 AC 48 ms
55,564 KB
testcase_07 AC 47 ms
55,552 KB
testcase_08 AC 49 ms
55,936 KB
testcase_09 WA -
testcase_10 AC 48 ms
55,552 KB
testcase_11 AC 49 ms
55,168 KB
testcase_12 AC 49 ms
55,552 KB
testcase_13 AC 49 ms
55,552 KB
testcase_14 AC 47 ms
55,168 KB
testcase_15 AC 48 ms
55,168 KB
testcase_16 AC 48 ms
55,432 KB
testcase_17 AC 48 ms
55,424 KB
testcase_18 AC 48 ms
55,424 KB
testcase_19 AC 48 ms
55,552 KB
testcase_20 AC 47 ms
55,368 KB
testcase_21 AC 47 ms
55,168 KB
testcase_22 AC 47 ms
55,552 KB
testcase_23 AC 48 ms
55,936 KB
testcase_24 AC 48 ms
55,168 KB
testcase_25 AC 49 ms
55,040 KB
testcase_26 AC 48 ms
55,168 KB
testcase_27 AC 48 ms
55,424 KB
testcase_28 AC 49 ms
55,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


N,K = map(int,input().split())
A = list(map(int,input().split()))
ans = 0
for a in A:
    
    ans ^= (a%K)

if ans:
    print('YES')
else:
    print('NO')
0