結果

問題 No.178 美しいWhitespace (1)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-20 22:49:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 4,159 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 43,840 KB
最終ジャッジ日時 2024-10-11 18:01:57
合計ジャッジ時間 10,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,624 KB
testcase_01 AC 131 ms
41,420 KB
testcase_02 AC 131 ms
41,236 KB
testcase_03 AC 135 ms
41,268 KB
testcase_04 AC 205 ms
43,768 KB
testcase_05 AC 204 ms
43,556 KB
testcase_06 AC 203 ms
43,440 KB
testcase_07 AC 203 ms
43,288 KB
testcase_08 AC 208 ms
43,272 KB
testcase_09 AC 194 ms
43,796 KB
testcase_10 AC 206 ms
43,616 KB
testcase_11 AC 205 ms
43,352 KB
testcase_12 AC 207 ms
43,628 KB
testcase_13 AC 208 ms
43,628 KB
testcase_14 AC 208 ms
43,696 KB
testcase_15 AC 206 ms
43,400 KB
testcase_16 AC 206 ms
43,600 KB
testcase_17 AC 206 ms
43,420 KB
testcase_18 AC 208 ms
43,288 KB
testcase_19 AC 204 ms
43,300 KB
testcase_20 AC 210 ms
43,664 KB
testcase_21 AC 208 ms
43,252 KB
testcase_22 AC 196 ms
43,420 KB
testcase_23 AC 207 ms
43,388 KB
testcase_24 AC 206 ms
43,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise103{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    long[] sum = new long[n];
    long max = 0;
    for(int i = 0; i < n; i++){
      long a = sc.nextLong();
      long b = sc.nextLong() * 4;
      sum[i] = a + b;
      max = Math.max(max, a + b);
    }
    long answer = 0;
    for(int i = 0; i < n; i++){
      if((max - sum[i]) % 2 == 0){
        answer += (max - sum[i]) / 2;
      }else{
        System.out.println(-1);
        return;
      }
    }
    System.out.println(answer);
  }
}
0