結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,112 KB
testcase_01 AC 133 ms
41,236 KB
testcase_02 AC 116 ms
41,048 KB
testcase_03 AC 592 ms
49,156 KB
testcase_04 AC 662 ms
51,036 KB
testcase_05 AC 534 ms
47,836 KB
testcase_06 AC 501 ms
48,048 KB
testcase_07 AC 647 ms
49,916 KB
testcase_08 AC 587 ms
48,248 KB
testcase_09 AC 649 ms
50,472 KB
testcase_10 AC 358 ms
46,408 KB
testcase_11 AC 732 ms
53,076 KB
testcase_12 AC 508 ms
47,056 KB
testcase_13 AC 112 ms
40,168 KB
testcase_14 AC 103 ms
40,152 KB
testcase_15 AC 106 ms
40,236 KB
testcase_16 AC 126 ms
41,348 KB
testcase_17 AC 107 ms
40,072 KB
testcase_18 AC 128 ms
41,448 KB
testcase_19 AC 132 ms
41,408 KB
testcase_20 AC 127 ms
41,372 KB
testcase_21 AC 123 ms
41,216 KB
testcase_22 AC 126 ms
41,416 KB
testcase_23 AC 108 ms
40,092 KB
testcase_24 AC 118 ms
41,424 KB
testcase_25 AC 126 ms
41,268 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