結果

問題 No.178 美しいWhitespace (1)
ユーザー 37zigen
提出日時 2016-03-31 15:42:38
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 588 bytes
コンパイル時間 2,928 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 58,868 KB
最終ジャッジ日時 2024-10-02 08:27:28
合計ジャッジ時間 7,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6 WA * 15
権限があれば一括ダウンロードができます

ソースコード

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();
		int[] a=new int[n];//space
		int[] b=new int[n];//tab
		int[] width=new int[n];
		int min=999999;
		for(int i=0;i<n;i++){
			a[i]=sc.nextInt();
			b[i]=sc.nextInt();
			width[i]=a[i]+4*b[i];
			min=Math.min(width[i], min);
		}		
		int ans=0;
		for(int i=0;i<n;i++){
			width[i]-=min;
			if(width[i]%2==1){
				System.out.println(-1);
				return;
			}else{
				ans+=width[i]/2;
			}
		}
		System.out.println(ans);
	}
}
0