結果

問題 No.178 美しいWhitespace (1)
ユーザー ki_ki33ki_ki33
提出日時 2015-04-05 23:49:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,197 bytes
コンパイル時間 2,492 ms
コンパイル使用メモリ 85,776 KB
実行使用メモリ 43,804 KB
最終ジャッジ日時 2024-07-04 02:14:24
合計ジャッジ時間 7,173 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,852 KB
testcase_01 AC 102 ms
40,152 KB
testcase_02 AC 116 ms
41,004 KB
testcase_03 AC 105 ms
40,160 KB
testcase_04 AC 189 ms
43,268 KB
testcase_05 AC 182 ms
42,996 KB
testcase_06 AC 183 ms
43,668 KB
testcase_07 AC 177 ms
43,064 KB
testcase_08 AC 181 ms
43,344 KB
testcase_09 AC 192 ms
43,476 KB
testcase_10 AC 193 ms
43,496 KB
testcase_11 AC 185 ms
43,292 KB
testcase_12 AC 180 ms
43,372 KB
testcase_13 AC 188 ms
43,776 KB
testcase_14 AC 174 ms
43,804 KB
testcase_15 AC 183 ms
43,656 KB
testcase_16 AC 181 ms
43,584 KB
testcase_17 AC 191 ms
43,084 KB
testcase_18 AC 188 ms
43,564 KB
testcase_19 AC 190 ms
43,412 KB
testcase_20 AC 183 ms
43,492 KB
testcase_21 AC 177 ms
43,684 KB
testcase_22 AC 179 ms
43,400 KB
testcase_23 AC 180 ms
43,464 KB
testcase_24 AC 175 ms
43,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.Point;
import java.awt.Rectangle;
import java.awt.geom.Rectangle2D;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.*;
import java.util.Map.Entry;
import java.util.concurrent.ConcurrentSkipListSet;

public class Main {
	public static final int C =  1000000007;
	static final int CY = 1000000000;
	//static boolean MAP[][];
	static int N;
	static int B;
	static int[][] POS;
	static String S;
	static int X[][];
	static int HA[];
	static long DP[];
	static int ST[][];
	static ConcurrentSkipListSet<Integer> TS;
	static ArrayList<Integer> AL;
	public static void main(String[] args) {
		StringBuilder sb = new StringBuilder();
		BufferedInputStream bs = new BufferedInputStream(System.in);
		Scanner sc = new Scanner(bs);

		N = sc.nextInt();
		long[] a = new long[N];
		long max = 0;
		for (int i =0; i < N; i++) {
			a[i] = sc.nextLong()*1 + sc.nextLong()*4;
			max = Math.max(max, a[i]);
		}
		
		
		long ans = 0;
		
		
		for (int i=0; i < N; i++) {
			long num = -a[i] + max;
			if (num %2 != 0) {
				ans = -1;
				break;
			}
			ans += num/2;
		}
		
		System.out.println(ans);
		
	}
}
0