結果

問題 No.669 対決!!! 飲み比べ
ユーザー Grenache
提出日時 2018-04-01 21:15:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 4,771 ms
コンパイル使用メモリ 75,616 KB
実行使用メモリ 51,980 KB
最終ジャッジ日時 2024-06-26 05:47:35
合計ジャッジ時間 9,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder669 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		int k = sc.nextInt();

		int xor = 0;
		for (int i = 0; i < n; i++) {
			int a = sc.nextInt();

			xor ^= a % (k + 1);
		}

		if (xor == 0) {
			pr.println("NO");
		} else {
			pr.println("YES");
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0