結果

問題 No.669 対決!!! 飲み比べ
ユーザー 👑 Kazun
提出日時 2020-09-18 01:09:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 133 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 53,752 KB
最終ジャッジ日時 2024-06-22 07:25:19
合計ジャッジ時間 2,030 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 23 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

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

G=0
for a in A:
    G^=a

if G:
    print("YES")
else:
    print("NO")
0