結果

問題 No.601 Midpoint Erase
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-12-01 00:03:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 1,756 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 78,180 KB
実行使用メモリ 58,280 KB
最終ジャッジ日時 2024-06-02 08:09:40
合計ジャッジ時間 5,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,420 KB
testcase_01 AC 51 ms
50,436 KB
testcase_02 AC 51 ms
50,376 KB
testcase_03 AC 224 ms
56,896 KB
testcase_04 AC 236 ms
57,116 KB
testcase_05 AC 207 ms
56,392 KB
testcase_06 AC 172 ms
55,324 KB
testcase_07 AC 229 ms
57,164 KB
testcase_08 AC 211 ms
56,648 KB
testcase_09 AC 227 ms
57,140 KB
testcase_10 AC 144 ms
54,812 KB
testcase_11 AC 264 ms
58,280 KB
testcase_12 AC 196 ms
55,960 KB
testcase_13 AC 50 ms
50,340 KB
testcase_14 AC 51 ms
50,036 KB
testcase_15 AC 50 ms
50,348 KB
testcase_16 AC 49 ms
50,396 KB
testcase_17 AC 50 ms
50,400 KB
testcase_18 AC 53 ms
50,492 KB
testcase_19 AC 52 ms
50,120 KB
testcase_20 AC 52 ms
50,380 KB
testcase_21 AC 52 ms
49,904 KB
testcase_22 AC 51 ms
50,404 KB
testcase_23 AC 50 ms
50,336 KB
testcase_24 AC 50 ms
50,472 KB
testcase_25 AC 50 ms
50,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


class Main {
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        int[][]c=new int[2][2];
        int n=sc.nextInt();
        for(int i=0;i<n;++i){
            int x=sc.nextInt();
            int y=sc.nextInt();
            c[x%2][y%2]++;
        }
        int t=c[0][0]/2+c[0][1]/2+c[1][0]/2+c[1][1]/2;
        out.println(t%2==0?"Bob":"Alice");
        out.close();
    }
    // http://codeforces.com/blog/entry/7018
    //-----------PrintWriter for faster output---------------------------------
    public static PrintWriter out;
    //-----------MyScanner class for faster input----------
    public static class MyScanner {
        BufferedReader br;
        StringTokenizer st;
        public MyScanner() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }
        String next() {
            while (st == null || !st.hasMoreElements()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            return st.nextToken();
        }
        int nextInt() {
            return Integer.parseInt(next());
        }
        long nextLong() {
            return Long.parseLong(next());
        }
        double nextDouble() {
            return Double.parseDouble(next());
        }
        String nextLine(){
            String str = "";
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return str;
        }
    }
}
0