結果

問題 No.178 美しいWhitespace (1)
ユーザー koukonkokoukonko
提出日時 2015-12-14 12:57:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,210 bytes
コンパイル時間 2,528 ms
コンパイル使用メモリ 78,280 KB
実行使用メモリ 38,288 KB
最終ジャッジ日時 2024-09-15 12:28:56
合計ジャッジ時間 5,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,808 KB
testcase_01 AC 51 ms
36,840 KB
testcase_02 AC 50 ms
36,644 KB
testcase_03 AC 50 ms
36,656 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 47 ms
36,948 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 50 ms
36,860 KB
testcase_12 AC 50 ms
36,892 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 50 ms
36,752 KB
testcase_19 WA -
testcase_20 AC 49 ms
36,516 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 77 ms
37,748 KB
testcase_24 AC 89 ms
38,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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<Integer> list = new ArrayList<>(N);
			String[] box = read.readLine().split(" ");

			int 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;
			}

			int 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<Integer> it = list.iterator();
				int ans = 0;
				while (it.hasNext()) {
					ans += max - it.next();
				}

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