結果

問題 No.178 美しいWhitespace (1)
ユーザー dazydazy
提出日時 2017-02-22 16:58:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 927 bytes
コンパイル時間 2,896 ms
コンパイル使用メモリ 77,564 KB
実行使用メモリ 43,912 KB
最終ジャッジ日時 2024-06-09 19:39:30
合計ジャッジ時間 7,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
41,140 KB
testcase_01 AC 99 ms
40,576 KB
testcase_02 AC 103 ms
41,220 KB
testcase_03 AC 100 ms
41,564 KB
testcase_04 AC 175 ms
43,444 KB
testcase_05 AC 165 ms
43,484 KB
testcase_06 AC 167 ms
43,140 KB
testcase_07 AC 107 ms
40,980 KB
testcase_08 AC 170 ms
43,912 KB
testcase_09 AC 173 ms
43,016 KB
testcase_10 AC 175 ms
43,204 KB
testcase_11 AC 102 ms
40,992 KB
testcase_12 AC 106 ms
41,252 KB
testcase_13 AC 177 ms
43,420 KB
testcase_14 AC 181 ms
43,716 KB
testcase_15 AC 176 ms
43,728 KB
testcase_16 AC 175 ms
43,484 KB
testcase_17 AC 178 ms
43,472 KB
testcase_18 AC 110 ms
41,248 KB
testcase_19 AC 172 ms
43,424 KB
testcase_20 AC 100 ms
40,220 KB
testcase_21 AC 173 ms
43,840 KB
testcase_22 AC 165 ms
43,448 KB
testcase_23 AC 168 ms
43,288 KB
testcase_24 AC 173 ms
43,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int [] a = new int[N];
        int [] b = new int[N];
        long [] c = new long[N];
        long ans = 0;
        long max = 0;
        int num = 0;
        boolean x = false, y = false;

        for (int i = 0; i < N; i++) {
            a[i] = scan.nextInt();
            b[i] = scan.nextInt();

            if (a[i]%2==0) x = true;
            else y = true;
            if (x && y) break;

            c[i] = a[i] + 4*b[i];
            if (max < c[i]) {
                num = i;
                max = c[i];
            }
        }

        for (int i = 0; i < N; i++) {
            if (x && y) {
                ans = -1;
                break;
            }
            ans += (c[num] - c[i])/2;
        }

        System.out.println(ans);
    }
}
0