結果

問題 No.178 美しいWhitespace (1)
ユーザー darknightdarknight
提出日時 2016-11-17 20:28:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 972 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 77,984 KB
実行使用メモリ 42,696 KB
最終ジャッジ日時 2024-05-04 14:58:41
合計ジャッジ時間 6,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
41,148 KB
testcase_01 AC 99 ms
40,908 KB
testcase_02 AC 98 ms
40,800 KB
testcase_03 AC 100 ms
41,116 KB
testcase_04 AC 148 ms
42,292 KB
testcase_05 AC 149 ms
41,952 KB
testcase_06 AC 153 ms
42,188 KB
testcase_07 WA -
testcase_08 AC 159 ms
41,856 KB
testcase_09 AC 150 ms
42,172 KB
testcase_10 AC 153 ms
42,180 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 149 ms
42,040 KB
testcase_14 AC 154 ms
42,336 KB
testcase_15 AC 154 ms
42,540 KB
testcase_16 AC 150 ms
42,324 KB
testcase_17 AC 149 ms
42,060 KB
testcase_18 WA -
testcase_19 AC 152 ms
42,236 KB
testcase_20 WA -
testcase_21 AC 148 ms
42,252 KB
testcase_22 AC 152 ms
42,036 KB
testcase_23 AC 147 ms
42,188 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