結果

問題 No.178 美しいWhitespace (1)
ユーザー darknightdarknight
提出日時 2016-11-17 20:34:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 916 bytes
コンパイル時間 2,404 ms
コンパイル使用メモリ 78,072 KB
実行使用メモリ 42,532 KB
最終ジャッジ日時 2024-11-26 03:10:29
合計ジャッジ時間 6,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,064 KB
testcase_01 AC 116 ms
41,320 KB
testcase_02 AC 105 ms
39,656 KB
testcase_03 AC 101 ms
40,032 KB
testcase_04 AC 165 ms
42,496 KB
testcase_05 AC 165 ms
42,004 KB
testcase_06 AC 155 ms
42,316 KB
testcase_07 AC 162 ms
42,216 KB
testcase_08 AC 168 ms
41,856 KB
testcase_09 AC 168 ms
41,940 KB
testcase_10 AC 164 ms
42,304 KB
testcase_11 AC 164 ms
42,228 KB
testcase_12 AC 154 ms
42,260 KB
testcase_13 AC 160 ms
42,272 KB
testcase_14 AC 186 ms
42,308 KB
testcase_15 AC 163 ms
42,280 KB
testcase_16 AC 166 ms
42,532 KB
testcase_17 AC 163 ms
42,456 KB
testcase_18 AC 162 ms
42,280 KB
testcase_19 AC 170 ms
42,132 KB
testcase_20 AC 179 ms
42,052 KB
testcase_21 AC 164 ms
41,992 KB
testcase_22 AC 159 ms
42,124 KB
testcase_23 AC 178 ms
42,220 KB
testcase_24 AC 179 ms
42,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
 
	Scanner sc  = new Scanner(System.in);
        
    int cnt = 0;
    int g = 0, k = 0 ;
    
    int N = Integer.parseInt(sc.next());
    
    Long[] a = new Long[N]; 
    Long[] b = new Long[N]; 
    Long[] sum = new Long[N+1]; 

    while(true){
        a[cnt] = Long.parseLong(sc.next());
        b[cnt] = Long.parseLong(sc.next());
        cnt++;
        if(cnt==N)break;
    }
    
    sum[0] = (long)0;
    for( int i = 0; i < N ; i++ ){
      
        if(a[i]%2==1) g++;
        else k++;
        sum[i+1] = a[i] + ( 4 * b[i] );

    }
    
    Arrays.sort( sum );
    Long max = sum[N];
    long d = 0;
    
    for( int i = 1; i < N ; i++ ){
         d += ( max - sum[i] ) / 2 ;
    }
    
   
    if(g>0 && k>0) System.out.print( -1 );
    else         System.out.print(  d );
        System.out.println();
        
	}
}
0