結果

問題 No.1506 Unbalanced Pocky Game
ユーザー ks2mks2m
提出日時 2021-05-14 22:20:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 614 bytes
コンパイル時間 3,751 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 63,720 KB
最終ジャッジ日時 2024-10-02 01:52:58
合計ジャッジ時間 34,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,020 KB
testcase_01 AC 129 ms
41,200 KB
testcase_02 AC 128 ms
41,164 KB
testcase_03 AC 232 ms
46,056 KB
testcase_04 AC 574 ms
48,428 KB
testcase_05 AC 578 ms
48,548 KB
testcase_06 AC 523 ms
48,328 KB
testcase_07 AC 456 ms
47,956 KB
testcase_08 AC 540 ms
48,176 KB
testcase_09 AC 621 ms
49,496 KB
testcase_10 AC 663 ms
49,592 KB
testcase_11 AC 497 ms
48,020 KB
testcase_12 AC 443 ms
48,000 KB
testcase_13 AC 340 ms
47,712 KB
testcase_14 AC 460 ms
48,164 KB
testcase_15 AC 433 ms
48,076 KB
testcase_16 AC 616 ms
48,932 KB
testcase_17 AC 483 ms
48,180 KB
testcase_18 AC 393 ms
48,072 KB
testcase_19 AC 383 ms
48,024 KB
testcase_20 AC 621 ms
50,508 KB
testcase_21 AC 477 ms
47,944 KB
testcase_22 AC 546 ms
48,120 KB
testcase_23 AC 133 ms
40,924 KB
testcase_24 AC 135 ms
41,536 KB
testcase_25 AC 696 ms
52,780 KB
testcase_26 AC 731 ms
53,492 KB
testcase_27 AC 778 ms
53,000 KB
testcase_28 AC 811 ms
53,060 KB
testcase_29 AC 822 ms
52,668 KB
testcase_30 AC 778 ms
53,348 KB
testcase_31 AC 823 ms
53,208 KB
testcase_32 AC 776 ms
53,572 KB
testcase_33 AC 750 ms
53,408 KB
testcase_34 AC 677 ms
52,872 KB
testcase_35 WA -
testcase_36 AC 141 ms
41,676 KB
testcase_37 AC 155 ms
41,516 KB
testcase_38 AC 140 ms
41,124 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 166 ms
42,048 KB
testcase_42 AC 159 ms
41,460 KB
testcase_43 AC 164 ms
41,712 KB
testcase_44 AC 145 ms
41,512 KB
testcase_45 AC 139 ms
41,224 KB
testcase_46 AC 570 ms
48,340 KB
testcase_47 AC 361 ms
47,704 KB
testcase_48 AC 428 ms
47,776 KB
testcase_49 AC 598 ms
48,164 KB
testcase_50 AC 562 ms
48,544 KB
testcase_51 AC 577 ms
48,112 KB
testcase_52 AC 540 ms
48,484 KB
testcase_53 AC 621 ms
48,632 KB
testcase_54 AC 439 ms
47,832 KB
testcase_55 AC 352 ms
48,080 KB
testcase_56 AC 361 ms
47,920 KB
testcase_57 AC 527 ms
48,316 KB
testcase_58 WA -
testcase_59 AC 289 ms
47,288 KB
testcase_60 AC 474 ms
48,192 KB
testcase_61 AC 560 ms
48,136 KB
testcase_62 AC 473 ms
48,148 KB
testcase_63 AC 401 ms
46,828 KB
testcase_64 WA -
testcase_65 AC 475 ms
48,176 KB
権限があれば一括ダウンロードができます

ソースコード

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];
				}
			} else {
				if (!b[i + 1] && a[i] > 1) {
					b[i + 1] = !b[i + 1];
				}
			}
		}
		if (b[n]) {
			System.out.println("Alice");
		} else {
			System.out.println("Bob");
		}
	}
}
0