結果

問題 No.601 Midpoint Erase
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-25 14:29:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 857 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 2,969 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 65,400 KB
最終ジャッジ日時 2024-11-06 14:41:54
合計ジャッジ時間 14,241 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,176 KB
testcase_01 AC 147 ms
54,056 KB
testcase_02 AC 133 ms
54,116 KB
testcase_03 AC 687 ms
61,244 KB
testcase_04 AC 716 ms
62,852 KB
testcase_05 AC 678 ms
59,448 KB
testcase_06 AC 533 ms
59,240 KB
testcase_07 AC 638 ms
62,308 KB
testcase_08 AC 700 ms
59,784 KB
testcase_09 AC 748 ms
62,344 KB
testcase_10 AC 444 ms
59,156 KB
testcase_11 AC 857 ms
65,400 KB
testcase_12 AC 634 ms
59,280 KB
testcase_13 AC 135 ms
53,848 KB
testcase_14 AC 133 ms
54,060 KB
testcase_15 AC 137 ms
53,980 KB
testcase_16 AC 144 ms
54,148 KB
testcase_17 AC 132 ms
53,980 KB
testcase_18 AC 146 ms
54,104 KB
testcase_19 AC 148 ms
54,304 KB
testcase_20 AC 144 ms
54,180 KB
testcase_21 AC 147 ms
53,900 KB
testcase_22 AC 148 ms
54,208 KB
testcase_23 AC 139 ms
54,264 KB
testcase_24 AC 142 ms
54,068 KB
testcase_25 AC 144 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int[] a = new int[4];
    for(int i = 0; i < n; i++) {
      int x = sc.nextInt();
      int y = sc.nextInt();
      if((x % 2) == 0) {
        if((y % 2) == 0) {
          a[0]++;
        } else {
          a[1]++;
        }
      } else {
        if((y % 2) == 0) {
          a[2]++;
        } else {
          a[3]++;
        }
      }
    }
    String ans = "Alice";
    int p = a[0] / 2 + a[1] / 2 + a[2] / 2 + a[3] / 2;
    if((p % 2) == 0) ans = "Bob";
    System.out.println(ans);
  }
}
0