結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,440 KB
testcase_01 AC 123 ms
41,624 KB
testcase_02 AC 116 ms
41,060 KB
testcase_03 AC 609 ms
49,240 KB
testcase_04 AC 611 ms
51,564 KB
testcase_05 AC 526 ms
48,100 KB
testcase_06 AC 449 ms
47,856 KB
testcase_07 AC 536 ms
49,876 KB
testcase_08 AC 553 ms
48,860 KB
testcase_09 AC 609 ms
50,180 KB
testcase_10 AC 357 ms
47,864 KB
testcase_11 AC 630 ms
53,460 KB
testcase_12 AC 539 ms
48,036 KB
testcase_13 AC 111 ms
41,684 KB
testcase_14 AC 108 ms
41,212 KB
testcase_15 AC 114 ms
41,084 KB
testcase_16 AC 122 ms
41,844 KB
testcase_17 AC 101 ms
39,900 KB
testcase_18 AC 120 ms
41,028 KB
testcase_19 AC 121 ms
41,148 KB
testcase_20 AC 119 ms
41,732 KB
testcase_21 AC 112 ms
40,448 KB
testcase_22 AC 122 ms
41,784 KB
testcase_23 AC 107 ms
41,336 KB
testcase_24 AC 119 ms
41,540 KB
testcase_25 AC 120 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[]$){
		Scanner s=new Scanner(System.in);
		int c[]=new int[4],i;
		for(i=s.nextInt();i>0;--i)
			++c[s.nextInt()%2*2+s.nextInt()%2];
		System.out.println((c[0]/2+c[1]/2+c[2]/2+c[3]/2)%2==0?"Bob":"Alice");
	}
}
0