結果

問題 No.601 Midpoint Erase
ユーザー uafr_csuafr_cs
提出日時 2017-12-01 22:39:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 740 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 53,652 KB
最終ジャッジ日時 2024-12-23 03:22:06
合計ジャッジ時間 12,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,228 KB
testcase_01 AC 151 ms
41,644 KB
testcase_02 AC 135 ms
41,012 KB
testcase_03 AC 684 ms
50,004 KB
testcase_04 AC 723 ms
51,532 KB
testcase_05 AC 663 ms
47,740 KB
testcase_06 AC 541 ms
47,716 KB
testcase_07 AC 671 ms
51,476 KB
testcase_08 AC 696 ms
48,144 KB
testcase_09 AC 740 ms
49,912 KB
testcase_10 AC 407 ms
46,764 KB
testcase_11 AC 740 ms
53,652 KB
testcase_12 AC 566 ms
47,308 KB
testcase_13 AC 112 ms
39,832 KB
testcase_14 AC 116 ms
40,132 KB
testcase_15 AC 127 ms
40,792 KB
testcase_16 AC 138 ms
41,284 KB
testcase_17 AC 125 ms
41,236 KB
testcase_18 AC 140 ms
41,232 KB
testcase_19 AC 151 ms
41,364 KB
testcase_20 AC 137 ms
40,916 KB
testcase_21 AC 150 ms
41,508 KB
testcase_22 AC 149 ms
41,252 KB
testcase_23 AC 144 ms
41,072 KB
testcase_24 AC 147 ms
41,456 KB
testcase_25 AC 140 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		long[][] count = new long[2][2];
		
		for(int i = 0; i < N; i++){
			final int x = sc.nextInt();
			final int y = sc.nextInt();
			
			count[y % 2][x % 2]++;
		}
		
		long all = 0;
		for(final long[] cs : count){
			for(final long c : cs){
				all += (c * (c - 1)) / 2;
			}
		}
		
		System.out.println(all % 2 == 0 ? "Bob" : "Alice");
		
	}
}
0