結果

問題 No.601 Midpoint Erase
ユーザー htensaihtensai
提出日時 2019-11-14 11:41:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 851 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 73,792 KB
実行使用メモリ 56,180 KB
最終ジャッジ日時 2024-09-21 21:22:35
合計ジャッジ時間 13,441 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,404 KB
testcase_01 AC 148 ms
41,304 KB
testcase_02 AC 134 ms
41,304 KB
testcase_03 AC 731 ms
50,004 KB
testcase_04 AC 755 ms
51,596 KB
testcase_05 AC 635 ms
47,884 KB
testcase_06 AC 576 ms
48,252 KB
testcase_07 AC 746 ms
51,068 KB
testcase_08 AC 704 ms
49,124 KB
testcase_09 AC 748 ms
51,476 KB
testcase_10 AC 434 ms
47,740 KB
testcase_11 AC 851 ms
56,180 KB
testcase_12 AC 635 ms
48,124 KB
testcase_13 AC 132 ms
41,068 KB
testcase_14 AC 136 ms
41,284 KB
testcase_15 AC 143 ms
41,296 KB
testcase_16 AC 143 ms
41,152 KB
testcase_17 AC 137 ms
41,624 KB
testcase_18 AC 149 ms
41,608 KB
testcase_19 AC 148 ms
41,216 KB
testcase_20 AC 145 ms
41,708 KB
testcase_21 AC 145 ms
41,440 KB
testcase_22 AC 148 ms
41,324 KB
testcase_23 AC 138 ms
41,440 KB
testcase_24 AC 139 ms
41,384 KB
testcase_25 AC 141 ms
41,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int typeEE = 0;
		int typeEO = 0;
		int typeOE = 0;
		int typeOO = 0;
		for (int i = 0; i < n; i++) {
		    int x =sc.nextInt();
		    int y =sc.nextInt();
		    if (x % 2 == 0) {
		        if (y % 2 == 0) {
		            typeEE++;
		        } else {
		            typeEO++;
		        }
		    } else {
		        if (y % 2 == 0) {
		            typeOE++;
		        } else {
		            typeOO++;
		        }
		    }
		}
		int count = typeEE /2 + typeEO / 2 +  typeOE / 2 + typeOO / 2;
		if (count % 2 == 0) {
		    System.out.println("Bob");
		} else {
		    System.out.println("Alice");
		}
	}
}
0