結果
| 問題 |
No.178 美しいWhitespace (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-31 15:48:32 |
| 言語 | Java (openjdk 23) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 21 |
ソースコード
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);
}
}