結果

問題 No.601 Midpoint Erase
ユーザー fal_rndfal_rnd
提出日時 2017-12-01 00:04:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 759 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 77,572 KB
実行使用メモリ 65,572 KB
最終ジャッジ日時 2024-06-02 08:10:15
合計ジャッジ時間 11,134 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,876 KB
testcase_01 AC 133 ms
53,936 KB
testcase_02 AC 108 ms
52,832 KB
testcase_03 AC 642 ms
60,256 KB
testcase_04 AC 638 ms
63,104 KB
testcase_05 AC 554 ms
59,212 KB
testcase_06 AC 459 ms
59,228 KB
testcase_07 AC 649 ms
61,592 KB
testcase_08 AC 631 ms
59,688 KB
testcase_09 AC 642 ms
62,196 KB
testcase_10 AC 401 ms
59,388 KB
testcase_11 AC 759 ms
65,572 KB
testcase_12 AC 533 ms
59,440 KB
testcase_13 AC 108 ms
52,988 KB
testcase_14 AC 102 ms
52,848 KB
testcase_15 AC 119 ms
54,004 KB
testcase_16 AC 133 ms
54,140 KB
testcase_17 AC 120 ms
53,784 KB
testcase_18 AC 132 ms
53,972 KB
testcase_19 AC 133 ms
54,160 KB
testcase_20 AC 131 ms
54,096 KB
testcase_21 AC 131 ms
54,064 KB
testcase_22 AC 129 ms
54,040 KB
testcase_23 AC 120 ms
54,056 KB
testcase_24 AC 130 ms
54,012 KB
testcase_25 AC 131 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	static Scanner s=new Scanner(System.in);
	static int gInt(){
		return s.nextInt();
	}
	public static void main(String[]$){
		int n=gInt();
		int[]c=new int[4];
		for(int i=0;i<n;++i) {
			int x=gInt(),y=gInt();
			x=x%2*2;
			y=y%2;
			++c[x+y];
		}
		int sum=Arrays.stream(c).map(i->i/2).sum();
		System.out.println(sum%2==0?"Bob":"Alice");
	}
}
0