結果

問題 No.669 対決!!! 飲み比べ
ユーザー tcltktcltk
提出日時 2021-06-06 05:42:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 87,144 KB
最終ジャッジ日時 2024-11-22 09:06:08
合計ジャッジ時間 5,556 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 137 ms
86,784 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 139 ms
86,528 KB
testcase_06 AC 139 ms
86,912 KB
testcase_07 AC 139 ms
86,784 KB
testcase_08 AC 137 ms
86,784 KB
testcase_09 WA -
testcase_10 AC 138 ms
86,796 KB
testcase_11 AC 135 ms
86,912 KB
testcase_12 AC 139 ms
86,400 KB
testcase_13 AC 138 ms
86,784 KB
testcase_14 AC 140 ms
86,656 KB
testcase_15 AC 141 ms
86,896 KB
testcase_16 AC 138 ms
86,480 KB
testcase_17 AC 139 ms
86,528 KB
testcase_18 AC 139 ms
86,912 KB
testcase_19 AC 139 ms
86,784 KB
testcase_20 AC 140 ms
86,400 KB
testcase_21 AC 141 ms
86,784 KB
testcase_22 AC 141 ms
86,672 KB
testcase_23 AC 143 ms
86,784 KB
testcase_24 AC 140 ms
86,528 KB
testcase_25 AC 140 ms
86,416 KB
testcase_26 AC 139 ms
86,456 KB
testcase_27 AC 139 ms
86,784 KB
testcase_28 AC 137 ms
86,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

YES = 'YES'
NO = 'NO'

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

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