結果

問題 No.601 Midpoint Erase
ユーザー YamaKasaYamaKasa
提出日時 2018-09-26 15:27:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 849 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 3,641 ms
コンパイル使用メモリ 76,136 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-10-10 22:19:31
合計ジャッジ時間 13,502 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,580 KB
testcase_01 AC 143 ms
41,096 KB
testcase_02 AC 132 ms
40,952 KB
testcase_03 AC 653 ms
50,580 KB
testcase_04 AC 712 ms
52,236 KB
testcase_05 AC 664 ms
48,500 KB
testcase_06 AC 559 ms
48,220 KB
testcase_07 AC 633 ms
52,168 KB
testcase_08 AC 649 ms
49,600 KB
testcase_09 AC 745 ms
52,136 KB
testcase_10 AC 437 ms
47,904 KB
testcase_11 AC 849 ms
54,444 KB
testcase_12 AC 660 ms
48,424 KB
testcase_13 AC 130 ms
41,268 KB
testcase_14 AC 130 ms
41,064 KB
testcase_15 AC 138 ms
41,100 KB
testcase_16 AC 141 ms
41,128 KB
testcase_17 AC 135 ms
41,200 KB
testcase_18 AC 145 ms
41,172 KB
testcase_19 AC 149 ms
41,308 KB
testcase_20 AC 144 ms
41,180 KB
testcase_21 AC 148 ms
41,636 KB
testcase_22 AC 149 ms
41,212 KB
testcase_23 AC 137 ms
41,080 KB
testcase_24 AC 145 ms
41,600 KB
testcase_25 AC 142 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int[]x = new int[N];
		int[]y = new int[N];
		for(int i = 0; i < N; i++) {
			x[i] = scan.nextInt();
			y[i] = scan.nextInt();
		}
		scan.close();
		int c1 = 0;
		int c2 = 0;
		int c3 = 0;
		int c4 = 0;
		for(int i = 0; i < N; i++) {
			if(x[i] % 2 == 0 && y[i] % 2 == 0) {
				c1++;
			}else if(x[i] % 2 == 0 && y[i] % 2 == 1) {
				c2++;
			}else if(x[i] % 2 == 1 && y[i] % 2 == 0) {
				c3++;
			}else {
				c4++;
			}
		}
		int cnt = c1 / 2 + c2 / 2 + c3 / 2 + c4 / 2;
		if(cnt % 2 == 0) {
			System.out.println("Bob");
		}else {
			System.out.println("Alice");
		}
	}
}
0