結果

問題 No.178 美しいWhitespace (1)
ユーザー 37zigen37zigen
提出日時 2016-03-31 15:48:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 2,363 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 43,964 KB
最終ジャッジ日時 2024-10-02 08:27:56
合計ジャッジ時間 8,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,256 KB
testcase_01 AC 132 ms
41,192 KB
testcase_02 AC 132 ms
41,480 KB
testcase_03 AC 133 ms
41,216 KB
testcase_04 AC 207 ms
43,508 KB
testcase_05 AC 214 ms
43,496 KB
testcase_06 AC 211 ms
43,288 KB
testcase_07 AC 206 ms
43,420 KB
testcase_08 AC 208 ms
43,472 KB
testcase_09 AC 207 ms
43,628 KB
testcase_10 AC 206 ms
43,708 KB
testcase_11 AC 207 ms
43,684 KB
testcase_12 AC 205 ms
43,824 KB
testcase_13 AC 207 ms
43,680 KB
testcase_14 AC 210 ms
43,472 KB
testcase_15 AC 210 ms
43,380 KB
testcase_16 AC 203 ms
43,432 KB
testcase_17 AC 209 ms
43,464 KB
testcase_18 AC 209 ms
43,684 KB
testcase_19 AC 205 ms
43,964 KB
testcase_20 AC 207 ms
43,548 KB
testcase_21 AC 207 ms
43,456 KB
testcase_22 AC 199 ms
43,548 KB
testcase_23 AC 210 ms
43,676 KB
testcase_24 AC 208 ms
43,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder178;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		long[] a=new long[n];//space
		long[] b=new long[n];//tab
		long[] width=new long[n];
		long max=0;
		for(int i=0;i<n;i++){
			a[i]=sc.nextInt();
			b[i]=sc.nextInt();
			width[i]=a[i]+4*b[i];
			max=Math.max(width[i], max);
		}		
		long ans=0;
		for(int i=0;i<n;i++){
			width[i]=max-width[i];
			if(width[i]%2==1){
				System.out.println(-1);
				return;
			}else{
				ans+=width[i]/2;
			}
		}
		System.out.println(ans);
	}
}
0