結果

問題 No.2666 Decreasing Modulo Nim
ユーザー ks2mks2m
提出日時 2024-03-08 22:32:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,010 bytes
コンパイル時間 2,964 ms
コンパイル使用メモリ 78,140 KB
実行使用メモリ 78,620 KB
最終ジャッジ日時 2024-09-29 20:02:13
合計ジャッジ時間 25,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,384 KB
testcase_01 AC 53 ms
50,280 KB
testcase_02 AC 54 ms
50,268 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 204 ms
58,852 KB
testcase_13 AC 331 ms
63,448 KB
testcase_14 AC 234 ms
58,620 KB
testcase_15 AC 490 ms
76,632 KB
testcase_16 AC 209 ms
58,892 KB
testcase_17 AC 303 ms
62,620 KB
testcase_18 AC 413 ms
74,928 KB
testcase_19 AC 325 ms
64,236 KB
testcase_20 AC 308 ms
63,960 KB
testcase_21 AC 453 ms
71,068 KB
testcase_22 AC 214 ms
58,988 KB
testcase_23 AC 209 ms
58,544 KB
testcase_24 AC 228 ms
58,068 KB
testcase_25 AC 259 ms
60,396 KB
testcase_26 AC 400 ms
73,244 KB
testcase_27 AC 335 ms
63,656 KB
testcase_28 AC 527 ms
73,016 KB
testcase_29 AC 436 ms
74,836 KB
testcase_30 AC 511 ms
72,168 KB
testcase_31 AC 364 ms
67,756 KB
testcase_32 AC 500 ms
78,620 KB
testcase_33 AC 505 ms
71,960 KB
testcase_34 AC 181 ms
57,400 KB
testcase_35 AC 464 ms
75,344 KB
testcase_36 AC 392 ms
72,600 KB
testcase_37 AC 545 ms
76,576 KB
testcase_38 AC 498 ms
71,632 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 368 ms
65,420 KB
testcase_42 AC 374 ms
65,096 KB
testcase_43 AC 55 ms
49,924 KB
testcase_44 AC 54 ms
50,044 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 534 ms
71,768 KB
testcase_48 AC 477 ms
71,948 KB
testcase_49 AC 503 ms
71,612 KB
testcase_50 AC 443 ms
72,004 KB
testcase_51 AC 526 ms
72,216 KB
testcase_52 AC 457 ms
72,072 KB
testcase_53 AC 391 ms
71,944 KB
testcase_54 AC 421 ms
72,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		Set<Integer> set1 = new HashSet<>();
		Set<Integer> set2 = new HashSet<>();
		for (int i = 0; i < n; i++) {
			int v1 = a[i] / m;
			int v2 = a[i] % m;
			if (set1.contains(v1)) {
				set1.remove(v1);
			} else {
				set1.add(v1);
			}
			if (set2.contains(v2)) {
				set2.remove(v2);
			} else {
				set2.add(v2);
			}
		}
		set1.remove(0);
		set2.remove(0);
		if (set1.isEmpty() && set2.isEmpty()) {
			System.out.println("Bob");
		} else {
			System.out.println("Alice");
		}
	}
}
0