結果

問題 No.669 対決!!! 飲み比べ
ユーザー AEnAEn
提出日時 2023-03-14 17:54:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 134 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-09-18 08:21:06
合計ジャッジ時間 2,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 38 ms
51,824 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
53,556 KB
testcase_06 AC 39 ms
52,004 KB
testcase_07 AC 39 ms
52,208 KB
testcase_08 AC 40 ms
51,940 KB
testcase_09 WA -
testcase_10 AC 38 ms
52,424 KB
testcase_11 AC 38 ms
51,992 KB
testcase_12 AC 39 ms
53,248 KB
testcase_13 AC 39 ms
52,036 KB
testcase_14 AC 38 ms
52,140 KB
testcase_15 AC 38 ms
52,796 KB
testcase_16 AC 39 ms
52,184 KB
testcase_17 AC 39 ms
52,868 KB
testcase_18 AC 38 ms
53,008 KB
testcase_19 AC 39 ms
53,332 KB
testcase_20 AC 39 ms
52,796 KB
testcase_21 AC 39 ms
52,524 KB
testcase_22 AC 39 ms
52,792 KB
testcase_23 AC 40 ms
53,004 KB
testcase_24 AC 38 ms
52,816 KB
testcase_25 AC 38 ms
52,280 KB
testcase_26 AC 39 ms
53,044 KB
testcase_27 AC 39 ms
52,404 KB
testcase_28 AC 38 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

res = 0
for a in A:
    res ^= a%K
print('YES' if res else 'NO')
0