結果

問題 No.178 美しいWhitespace (1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-23 06:55:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 56,956 KB
最終ジャッジ日時 2024-10-02 12:38:57
合計ジャッジ時間 8,077 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,300 KB
testcase_01 AC 135 ms
54,024 KB
testcase_02 AC 133 ms
54,048 KB
testcase_03 AC 133 ms
53,788 KB
testcase_04 AC 206 ms
56,616 KB
testcase_05 AC 208 ms
56,956 KB
testcase_06 AC 206 ms
56,508 KB
testcase_07 AC 205 ms
56,468 KB
testcase_08 AC 205 ms
56,576 KB
testcase_09 AC 206 ms
56,208 KB
testcase_10 AC 206 ms
56,532 KB
testcase_11 AC 208 ms
56,908 KB
testcase_12 AC 203 ms
56,276 KB
testcase_13 AC 202 ms
56,516 KB
testcase_14 AC 207 ms
56,800 KB
testcase_15 AC 209 ms
56,512 KB
testcase_16 AC 206 ms
56,728 KB
testcase_17 AC 206 ms
56,552 KB
testcase_18 AC 203 ms
56,800 KB
testcase_19 AC 203 ms
56,520 KB
testcase_20 AC 220 ms
56,488 KB
testcase_21 AC 201 ms
56,376 KB
testcase_22 AC 198 ms
56,276 KB
testcase_23 AC 210 ms
56,676 KB
testcase_24 AC 208 ms
56,544 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 odd = 0;
    int even = 0;
    long max = 0;
    long[] a = new long[N];
    long[] b = new long[N];
    for(int i = 0; i < N; i++) {
      a[i] = sc.nextLong();
      b[i] = sc.nextLong();
      if(a[i] % 2 == 0) {
        even++;
      } else {
        odd++;
      }
      max = Math.max(max, a[i] + 4 * b[i]);
    }
    long ans = 0;
    if(even == 0 || odd == 0) {
      for(int i = 0; i < N; i++) {
        ans += ((max - a[i] - 4 * b[i]) / 2);
      }
    } else {
      ans = -1;
    }
    System.out.println(ans);
  }
}
0