結果

問題 No.2059 Odd Move Nim
ユーザー ks2mks2m
提出日時 2022-08-26 21:50:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 72,804 KB
実行使用メモリ 57,640 KB
最終ジャッジ日時 2024-10-15 11:04:57
合計ジャッジ時間 6,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,940 KB
testcase_01 AC 50 ms
36,764 KB
testcase_02 AC 49 ms
36,988 KB
testcase_03 AC 50 ms
36,712 KB
testcase_04 AC 49 ms
36,376 KB
testcase_05 AC 50 ms
36,900 KB
testcase_06 AC 50 ms
36,592 KB
testcase_07 AC 48 ms
36,884 KB
testcase_08 AC 49 ms
36,900 KB
testcase_09 AC 50 ms
36,964 KB
testcase_10 AC 49 ms
36,836 KB
testcase_11 AC 47 ms
36,920 KB
testcase_12 AC 291 ms
57,376 KB
testcase_13 AC 289 ms
57,364 KB
testcase_14 AC 286 ms
57,336 KB
testcase_15 AC 289 ms
57,476 KB
testcase_16 AC 292 ms
57,640 KB
testcase_17 AC 287 ms
57,412 KB
testcase_18 AC 292 ms
57,268 KB
testcase_19 AC 286 ms
56,960 KB
testcase_20 AC 291 ms
57,284 KB
testcase_21 AC 287 ms
57,176 KB
testcase_22 AC 48 ms
36,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

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

		int x = 0;
		for (int i = 1; i < n; i += 2) {
			x ^= a[i];
		}
		if (x == 0) {
			System.out.println("Bob");
		} else {
			System.out.println("Alice");
		}
	}
}
0