結果

問題 No.178 美しいWhitespace (1)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-05 23:35:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 3,695 ms
コンパイル使用メモリ 78,320 KB
実行使用メモリ 57,024 KB
最終ジャッジ日時 2024-07-04 02:12:48
合計ジャッジ時間 9,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,892 KB
testcase_01 AC 137 ms
54,048 KB
testcase_02 AC 140 ms
53,956 KB
testcase_03 AC 141 ms
54,120 KB
testcase_04 AC 210 ms
56,812 KB
testcase_05 AC 212 ms
56,388 KB
testcase_06 AC 217 ms
56,280 KB
testcase_07 AC 217 ms
57,000 KB
testcase_08 AC 212 ms
56,344 KB
testcase_09 AC 218 ms
56,504 KB
testcase_10 AC 215 ms
56,652 KB
testcase_11 AC 216 ms
56,744 KB
testcase_12 AC 213 ms
56,604 KB
testcase_13 AC 201 ms
56,524 KB
testcase_14 AC 215 ms
57,024 KB
testcase_15 AC 214 ms
56,444 KB
testcase_16 AC 221 ms
56,316 KB
testcase_17 AC 214 ms
56,700 KB
testcase_18 AC 218 ms
56,656 KB
testcase_19 AC 215 ms
56,788 KB
testcase_20 AC 214 ms
56,900 KB
testcase_21 AC 210 ms
56,500 KB
testcase_22 AC 208 ms
56,408 KB
testcase_23 AC 217 ms
56,556 KB
testcase_24 AC 218 ms
56,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No178 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = in.nextInt();
        long[] a = new long[n];
        long max = 0;
        for (int i=0; i<n; i++) {
            a[i] = in.nextInt()+in.nextInt()*4;
            max = max(max,a[i]);
        }
        
        long cnt = 0;
        for (int i=0; i<n; i++) {
            if ((max - a[i]) %2 == 1) {
                out.println("-1");
                return ;
            }
            cnt += (max - a[i])/2;
        }
        out.println(cnt);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0