結果

問題 No.669 対決!!! 飲み比べ
ユーザー uafr_csuafr_cs
提出日時 2018-03-23 22:42:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 2,802 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 54,644 KB
最終ジャッジ日時 2024-06-25 02:03:27
合計ジャッジ時間 7,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static final long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int K = sc.nextInt();
		
		int xor = 0;
		for(int i = 0; i < N; i++){
			xor ^= (sc.nextInt() % (K + 1));
		}
		
		System.out.println((xor == 0 ? "NO" : "YES"));
	}
}
0