結果

問題 No.178 美しいWhitespace (1)
ユーザー darknightdarknight
提出日時 2016-11-17 20:28:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 972 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 77,808 KB
実行使用メモリ 44,944 KB
最終ジャッジ日時 2024-11-26 03:09:21
合計ジャッジ時間 7,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,988 KB
testcase_01 AC 127 ms
41,100 KB
testcase_02 AC 128 ms
41,068 KB
testcase_03 AC 128 ms
41,104 KB
testcase_04 AC 183 ms
42,012 KB
testcase_05 AC 184 ms
42,428 KB
testcase_06 AC 183 ms
42,252 KB
testcase_07 WA -
testcase_08 AC 179 ms
42,392 KB
testcase_09 AC 186 ms
42,172 KB
testcase_10 AC 182 ms
42,612 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 183 ms
42,208 KB
testcase_14 AC 187 ms
42,320 KB
testcase_15 AC 189 ms
42,284 KB
testcase_16 AC 183 ms
41,980 KB
testcase_17 AC 180 ms
42,380 KB
testcase_18 WA -
testcase_19 AC 181 ms
42,188 KB
testcase_20 WA -
testcase_21 AC 186 ms
42,184 KB
testcase_22 AC 178 ms
42,512 KB
testcase_23 AC 180 ms
42,404 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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 ;
    }
    /*
     System.out.println(g);
     System.out.println(k);
    */
    if(g==k) System.out.print( -1 );
    else         System.out.print(  d );
        System.out.println();
        
	}
}
0