結果

問題 No.1506 Unbalanced Pocky Game
ユーザー ks2mks2m
提出日時 2021-05-14 22:18:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 3,201 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 63,936 KB
最終ジャッジ日時 2024-10-02 01:46:15
合計ジャッジ時間 31,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,960 KB
testcase_01 AC 116 ms
41,216 KB
testcase_02 AC 117 ms
40,672 KB
testcase_03 AC 208 ms
46,180 KB
testcase_04 AC 454 ms
48,436 KB
testcase_05 AC 438 ms
48,424 KB
testcase_06 AC 441 ms
48,264 KB
testcase_07 AC 377 ms
48,040 KB
testcase_08 AC 476 ms
48,160 KB
testcase_09 AC 586 ms
49,640 KB
testcase_10 AC 567 ms
48,892 KB
testcase_11 AC 411 ms
47,924 KB
testcase_12 AC 367 ms
48,008 KB
testcase_13 AC 302 ms
47,756 KB
testcase_14 WA -
testcase_15 AC 412 ms
47,988 KB
testcase_16 AC 543 ms
48,488 KB
testcase_17 AC 435 ms
47,956 KB
testcase_18 AC 329 ms
46,428 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 114 ms
40,932 KB
testcase_24 AC 111 ms
40,952 KB
testcase_25 AC 578 ms
50,076 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 604 ms
52,820 KB
testcase_29 AC 604 ms
52,804 KB
testcase_30 WA -
testcase_31 AC 670 ms
53,092 KB
testcase_32 WA -
testcase_33 AC 611 ms
52,832 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 126 ms
41,024 KB
testcase_37 WA -
testcase_38 AC 128 ms
41,360 KB
testcase_39 WA -
testcase_40 AC 129 ms
41,744 KB
testcase_41 WA -
testcase_42 AC 148 ms
41,396 KB
testcase_43 AC 162 ms
41,648 KB
testcase_44 AC 135 ms
41,592 KB
testcase_45 AC 124 ms
40,816 KB
testcase_46 AC 377 ms
46,720 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 581 ms
48,180 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 459 ms
48,216 KB
testcase_53 WA -
testcase_54 AC 388 ms
48,144 KB
testcase_55 AC 318 ms
47,768 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 371 ms
47,812 KB
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 401 ms
47,872 KB
testcase_64 AC 496 ms
48,832 KB
testcase_65 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		boolean[] b = new boolean[n + 1];
		for (int i = 0; i < n; i++) {
			b[i + 1] = !b[i];
			if (i % 2 == 1) {
				if (a[i] > 1) {
					b[i + 1] = !b[i + 1];
				}
			}
		}
		if (b[n]) {
			System.out.println("Alice");
		} else {
			System.out.println("Bob");
		}
	}
}
0