結果
問題 | No.669 対決!!! 飲み比べ |
ユーザー |
![]() |
提出日時 | 2018-03-23 23:01:48 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 1,150 bytes |
コンパイル時間 | 337 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-25 02:04:32 |
合計ジャッジ時間 | 1,999 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 25 |
ソースコード
#!/usr/bin/env python# -*- coding: utf-8 -*-import sysfrom collections import dequeimport heapqfrom collections import Counterimport math# ------------------------------------------------------class IN:@staticmethoddef singleInt():return int(input())@staticmethoddef singleStr():return input()@staticmethoddef listInt():return list(map(int, input().split()))@staticmethoddef listStr():return input().split()# ------------------------------------------------------print = lambda s: sys.stdout.write(str(s) + "\r\n")def contain(c, x):return (x in c)def str_reverse(s):return s[::-1]def ctoi(c):return int.from_bytes(c.encode(), byteorder='big')def itoc(x):return x.to_bytes((x.bit_length() + 7) // 8, byteorder='big').decode()INF = 1001001001001001001MOD = 1000000007# ------------------------------------------------------if __name__ == '__main__':N, K = IN.listInt()A = IN.listInt()g = 0for i in range(N):g ^= (A[i] % (K + 1))if g == 0:print("NO")else:print("YES")