結果

問題 No.669 対決!!! 飲み比べ
ユーザー GrenacheGrenache
提出日時 2018-04-01 21:15:14
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,260 KB
testcase_01 AC 133 ms
41,320 KB
testcase_02 AC 133 ms
41,532 KB
testcase_03 AC 132 ms
41,084 KB
testcase_04 AC 135 ms
41,476 KB
testcase_05 AC 134 ms
41,336 KB
testcase_06 AC 133 ms
41,396 KB
testcase_07 AC 136 ms
41,252 KB
testcase_08 AC 137 ms
41,332 KB
testcase_09 AC 140 ms
40,504 KB
testcase_10 AC 139 ms
51,980 KB
testcase_11 AC 138 ms
41,756 KB
testcase_12 AC 139 ms
41,412 KB
testcase_13 AC 142 ms
41,340 KB
testcase_14 AC 135 ms
40,904 KB
testcase_15 AC 134 ms
41,268 KB
testcase_16 AC 144 ms
41,216 KB
testcase_17 AC 139 ms
41,688 KB
testcase_18 AC 127 ms
40,228 KB
testcase_19 AC 136 ms
41,032 KB
testcase_20 AC 138 ms
41,260 KB
testcase_21 AC 140 ms
41,324 KB
testcase_22 AC 148 ms
41,380 KB
testcase_23 AC 186 ms
42,344 KB
testcase_24 AC 185 ms
41,840 KB
testcase_25 AC 135 ms
41,088 KB
testcase_26 AC 138 ms
41,064 KB
testcase_27 AC 133 ms
41,232 KB
testcase_28 AC 135 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

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