結果

問題 No.1506 Unbalanced Pocky Game
ユーザー shojin_proshojin_pro
提出日時 2021-05-14 22:40:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,471 bytes
コンパイル時間 2,486 ms
コンパイル使用メモリ 79,188 KB
実行使用メモリ 58,068 KB
最終ジャッジ日時 2024-04-10 01:28:17
合計ジャッジ時間 13,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,560 KB
testcase_01 AC 53 ms
50,288 KB
testcase_02 AC 55 ms
50,476 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 WA -
testcase_13 AC 98 ms
52,216 KB
testcase_14 AC 134 ms
54,412 KB
testcase_15 AC 128 ms
54,452 KB
testcase_16 AC 186 ms
55,752 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 130 ms
54,376 KB
testcase_22 AC 159 ms
55,188 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 238 ms
57,508 KB
testcase_27 AC 250 ms
57,824 KB
testcase_28 AC 238 ms
57,552 KB
testcase_29 WA -
testcase_30 AC 242 ms
57,700 KB
testcase_31 WA -
testcase_32 AC 245 ms
57,676 KB
testcase_33 AC 262 ms
57,948 KB
testcase_34 AC 241 ms
57,500 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 57 ms
50,356 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 56 ms
50,316 KB
testcase_42 AC 55 ms
50,600 KB
testcase_43 WA -
testcase_44 AC 55 ms
50,560 KB
testcase_45 AC 54 ms
50,512 KB
testcase_46 AC 180 ms
56,292 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 183 ms
56,000 KB
testcase_52 AC 187 ms
56,168 KB
testcase_53 WA -
testcase_54 AC 139 ms
54,332 KB
testcase_55 AC 131 ms
54,460 KB
testcase_56 AC 122 ms
54,216 KB
testcase_57 AC 160 ms
55,256 KB
testcase_58 WA -
testcase_59 AC 113 ms
52,064 KB
testcase_60 WA -
testcase_61 AC 191 ms
56,136 KB
testcase_62 WA -
testcase_63 AC 137 ms
54,540 KB
testcase_64 AC 173 ms
55,168 KB
testcase_65 AC 157 ms
54,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static FastScanner sc = new FastScanner(System.in);
    static PrintWriter pw = new PrintWriter(System.out);
    static StringBuilder sb = new StringBuilder();
    static long mod = (long) 1e9 + 7;

    public static void main(String[] args) throws Exception {
        solve();
        pw.flush();
    }

    public static void solve() {
        int n = sc.nextInt();
        int[] a = sc.nextIntArray(n);
        boolean isAlice = true;
        for(int i = 0; i < n; i++){
            if(a[i] != 1) break;
            isAlice = !isAlice;
        }
        pw.println(isAlice ? "Alice" : "Bob");
    }

    static class GeekInteger {
        public static void save_sort(int[] array) {
            shuffle(array);
            Arrays.sort(array);
        }

        public static int[] shuffle(int[] array) {
            int n = array.length;
            Random random = new Random();
            for (int i = 0, j; i < n; i++) {
                j = i + random.nextInt(n - i);
                int randomElement = array[j];
                array[j] = array[i];
                array[i] = randomElement;
            }
            return array;
        }

        public static void save_sort(long[] array) {
            shuffle(array);
            Arrays.sort(array);
        }

        public static long[] shuffle(long[] array) {
            int n = array.length;
            Random random = new Random();
            for (int i = 0, j; i < n; i++) {
                j = i + random.nextInt(n - i);
                long randomElement = array[j];
                array[j] = array[i];
                array[i] = randomElement;
            }
            return array;
        }

    }
}

class FastScanner {
    private BufferedReader reader = null;
    private StringTokenizer tokenizer = null;

    public FastScanner(InputStream in) {
        reader = new BufferedReader(new InputStreamReader(in));
        tokenizer = null;
    }

    public FastScanner(FileReader in) {
        reader = new BufferedReader(in);
        tokenizer = null;
    }

    public String next() {
        if (tokenizer == null || !tokenizer.hasMoreTokens()) {
            try {
                tokenizer = new StringTokenizer(reader.readLine());
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        }
        return tokenizer.nextToken();
    }

    public String nextLine() {
        if (tokenizer == null || !tokenizer.hasMoreTokens()) {
            try {
                return reader.readLine();
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        }
        return tokenizer.nextToken("\n");
    }

    public long nextLong() {
        return Long.parseLong(next());
    }

    public int nextInt() {
        return Integer.parseInt(next());
    }

    public double nextDouble() {
        return Double.parseDouble(next());
    }

    public String[] nextArray(int n) {
        String[] a = new String[n];
        for (int i = 0; i < n; i++)
            a[i] = next();
        return a;
    }

    public int[] nextIntArray(int n) {
        int[] a = new int[n];
        for (int i = 0; i < n; i++)
            a[i] = nextInt();
        return a;
    }

    public long[] nextLongArray(int n) {
        long[] a = new long[n];
        for (int i = 0; i < n; i++)
            a[i] = nextLong();
        return a;
    }
}
0