結果

問題 No.178 美しいWhitespace (1)
ユーザー Mcpu3Mcpu3
提出日時 2018-06-24 12:11:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 2,993 ms
コンパイル使用メモリ 75,500 KB
実行使用メモリ 56,996 KB
最終ジャッジ日時 2024-06-30 22:25:26
合計ジャッジ時間 8,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,156 KB
testcase_01 AC 133 ms
54,148 KB
testcase_02 AC 131 ms
54,132 KB
testcase_03 AC 133 ms
53,992 KB
testcase_04 AC 205 ms
56,756 KB
testcase_05 AC 203 ms
56,648 KB
testcase_06 AC 207 ms
56,656 KB
testcase_07 AC 207 ms
56,620 KB
testcase_08 AC 201 ms
56,996 KB
testcase_09 AC 204 ms
56,712 KB
testcase_10 AC 198 ms
56,444 KB
testcase_11 AC 197 ms
56,560 KB
testcase_12 AC 201 ms
56,708 KB
testcase_13 AC 205 ms
56,928 KB
testcase_14 AC 205 ms
56,832 KB
testcase_15 AC 202 ms
56,552 KB
testcase_16 AC 197 ms
56,720 KB
testcase_17 AC 199 ms
56,224 KB
testcase_18 AC 187 ms
56,812 KB
testcase_19 AC 203 ms
56,748 KB
testcase_20 AC 203 ms
56,688 KB
testcase_21 AC 202 ms
56,592 KB
testcase_22 AC 194 ms
56,500 KB
testcase_23 AC 193 ms
56,508 KB
testcase_24 AC 205 ms
56,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no178{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		long n=stdIn.nextLong(),a,b,s[]=new long[1000],m=0,t=0,ans=0;
		int i;
		for(i=0;i<n;i++) {
			a=stdIn.nextLong();
			b=stdIn.nextLong();
			s[i]+=a+4*b;
			if(m<s[i]) m=s[i];
		}
		for(i=0;i<n;i++) {
			if((m-s[i])%2!=0) t++;
			ans+=m-s[i];
		}
		System.out.print(t!=0?"-1":ans/2);
		
	}
}
0