結果

問題 No.178 美しいWhitespace (1)
ユーザー fal_rndfal_rnd
提出日時 2018-04-18 09:57:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 79,152 KB
実行使用メモリ 54,852 KB
最終ジャッジ日時 2024-06-27 04:28:22
合計ジャッジ時間 7,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,448 KB
testcase_01 AC 114 ms
53,192 KB
testcase_02 AC 127 ms
54,424 KB
testcase_03 AC 132 ms
54,144 KB
testcase_04 AC 181 ms
54,652 KB
testcase_05 AC 182 ms
54,628 KB
testcase_06 AC 182 ms
54,688 KB
testcase_07 AC 177 ms
54,692 KB
testcase_08 AC 186 ms
54,408 KB
testcase_09 AC 184 ms
54,668 KB
testcase_10 AC 187 ms
54,616 KB
testcase_11 AC 184 ms
54,396 KB
testcase_12 AC 179 ms
54,256 KB
testcase_13 AC 182 ms
54,424 KB
testcase_14 AC 190 ms
54,464 KB
testcase_15 AC 189 ms
54,524 KB
testcase_16 AC 189 ms
54,368 KB
testcase_17 AC 189 ms
54,388 KB
testcase_18 AC 189 ms
54,852 KB
testcase_19 AC 183 ms
54,320 KB
testcase_20 AC 189 ms
54,404 KB
testcase_21 AC 190 ms
54,496 KB
testcase_22 AC 187 ms
54,692 KB
testcase_23 AC 191 ms
54,288 KB
testcase_24 AC 192 ms
54,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
class Main {
    static Scanner s=new Scanner(System.in);
    static int gInt(){return Integer.parseInt(s.next());}
    public static void main(String[]$){
        int n=gInt();
        int[]a=IntStream.range(0,n).map(i->gInt()+gInt()*4).sorted().toArray();
        
        long r=0;
        for(int i=0;i<n-1;i++){
            int v=a[n-1]-a[i];
            if(v%2==1){
                System.out.println(-1);
                return;
            }
            r+=v/2;
        }
        System.out.println(r);
    }
}
0