結果

問題 No.178 美しいWhitespace (1)
ユーザー koukonkokoukonko
提出日時 2015-12-14 13:03:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,227 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 77,892 KB
実行使用メモリ 38,376 KB
最終ジャッジ日時 2024-09-15 12:29:04
合計ジャッジ時間 4,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,936 KB
testcase_01 AC 54 ms
36,972 KB
testcase_02 AC 52 ms
36,252 KB
testcase_03 AC 52 ms
36,952 KB
testcase_04 AC 84 ms
37,836 KB
testcase_05 AC 89 ms
38,144 KB
testcase_06 AC 78 ms
37,644 KB
testcase_07 AC 52 ms
36,376 KB
testcase_08 AC 90 ms
37,888 KB
testcase_09 AC 79 ms
37,776 KB
testcase_10 AC 84 ms
38,300 KB
testcase_11 AC 52 ms
36,848 KB
testcase_12 AC 53 ms
36,732 KB
testcase_13 AC 79 ms
37,492 KB
testcase_14 AC 81 ms
38,300 KB
testcase_15 AC 79 ms
38,240 KB
testcase_16 AC 80 ms
38,376 KB
testcase_17 AC 83 ms
38,176 KB
testcase_18 AC 53 ms
36,676 KB
testcase_19 AC 78 ms
38,212 KB
testcase_20 AC 52 ms
36,732 KB
testcase_21 AC 89 ms
37,992 KB
testcase_22 AC 73 ms
37,924 KB
testcase_23 AC 86 ms
38,008 KB
testcase_24 AC 93 ms
38,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {

			int N = Integer.parseInt(read.readLine());
			int i = 0, eo;
			List<Long> list = new ArrayList<>(N);
			String[] box = read.readLine().split(" ");

			long total = 0;
			total = Integer.parseInt(box[0]);
			total += Integer.parseInt(box[1]) * 4;
			list.add(total);

			if (total % 2 == 0) {
				eo = 0;
			} else {
				eo = 1;
			}

			long max = total;
			while (i++ < N - 1) {
				box = read.readLine().split(" ");
				total = Integer.parseInt(box[0]);
				total += Integer.parseInt(box[1]) * 4;
				list.add(total);

				if (total % 2 != eo) {
					break;
				} else {
					if (max < total) {
						max = total;
					}
				}
			}

			if (i < N) {
				System.out.println(-1);
			} else {
				Iterator<Long> it = list.iterator();
				long ans = 0;
				while (it.hasNext()) {
					ans += max - it.next();
				}

				System.out.println(ans / 2);
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0