結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | 37zigen |
提出日時 | 2016-03-31 15:44:30 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 599 bytes |
コンパイル時間 | 2,280 ms |
コンパイル使用メモリ | 74,844 KB |
実行使用メモリ | 43,800 KB |
最終ジャッジ日時 | 2024-10-02 08:27:37 |
合計ジャッジ時間 | 7,959 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
41,340 KB |
testcase_01 | AC | 133 ms
41,208 KB |
testcase_02 | AC | 133 ms
41,384 KB |
testcase_03 | AC | 131 ms
41,236 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 203 ms
43,556 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 203 ms
43,188 KB |
testcase_12 | AC | 205 ms
43,692 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 204 ms
43,432 KB |
testcase_19 | WA | - |
testcase_20 | AC | 205 ms
43,436 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 199 ms
43,476 KB |
testcase_24 | AC | 196 ms
43,416 KB |
ソースコード
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 min=999999999; 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); } long 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); } }