結果

問題 No.1738 What's in the box?
ユーザー ripityripity
提出日時 2021-11-12 21:56:41
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 605 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 75,120 KB
実行使用メモリ 43,656 KB
最終ジャッジ日時 2024-05-04 08:32:27
合計ジャッジ時間 15,247 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,568 KB
testcase_01 AC 112 ms
41,140 KB
testcase_02 AC 107 ms
41,060 KB
testcase_03 AC 242 ms
43,272 KB
testcase_04 AC 214 ms
43,232 KB
testcase_05 AC 215 ms
42,676 KB
testcase_06 AC 204 ms
43,372 KB
testcase_07 AC 227 ms
43,360 KB
testcase_08 AC 231 ms
43,488 KB
testcase_09 AC 233 ms
43,296 KB
testcase_10 AC 220 ms
43,272 KB
testcase_11 AC 234 ms
43,120 KB
testcase_12 AC 217 ms
42,864 KB
testcase_13 AC 125 ms
41,576 KB
testcase_14 AC 127 ms
41,316 KB
testcase_15 AC 128 ms
41,524 KB
testcase_16 AC 124 ms
41,480 KB
testcase_17 AC 133 ms
41,256 KB
testcase_18 AC 125 ms
41,412 KB
testcase_19 AC 121 ms
41,352 KB
testcase_20 AC 111 ms
41,400 KB
testcase_21 AC 129 ms
41,488 KB
testcase_22 AC 127 ms
41,516 KB
testcase_23 AC 106 ms
41,148 KB
testcase_24 AC 162 ms
41,824 KB
testcase_25 AC 152 ms
41,780 KB
testcase_26 AC 106 ms
41,644 KB
testcase_27 AC 119 ms
41,604 KB
testcase_28 AC 123 ms
41,484 KB
testcase_29 AC 118 ms
41,104 KB
testcase_30 AC 115 ms
41,388 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 200 ms
43,152 KB
testcase_34 AC 214 ms
43,240 KB
testcase_35 AC 208 ms
42,780 KB
testcase_36 AC 202 ms
42,900 KB
testcase_37 AC 216 ms
43,164 KB
testcase_38 AC 215 ms
43,040 KB
testcase_39 AC 207 ms
42,756 KB
testcase_40 AC 213 ms
43,296 KB
testcase_41 AC 227 ms
43,496 KB
testcase_42 AC 207 ms
43,180 KB
testcase_43 AC 221 ms
43,600 KB
testcase_44 AC 223 ms
43,196 KB
testcase_45 AC 223 ms
43,460 KB
testcase_46 AC 220 ms
43,656 KB
testcase_47 AC 239 ms
43,220 KB
testcase_48 AC 240 ms
43,448 KB
testcase_49 AC 210 ms
43,304 KB
testcase_50 AC 225 ms
43,336 KB
testcase_51 AC 210 ms
43,216 KB
testcase_52 AC 217 ms
43,156 KB
testcase_53 AC 128 ms
41,156 KB
testcase_54 AC 124 ms
41,056 KB
testcase_55 AC 116 ms
41,424 KB
testcase_56 AC 127 ms
41,696 KB
testcase_57 AC 116 ms
41,124 KB
testcase_58 AC 114 ms
41,404 KB
testcase_59 AC 117 ms
41,432 KB
testcase_60 AC 114 ms
41,368 KB
testcase_61 AC 111 ms
41,276 KB
testcase_62 AC 111 ms
41,432 KB
testcase_63 AC 105 ms
41,428 KB
testcase_64 AC 112 ms
41,464 KB
testcase_65 AC 103 ms
41,132 KB
testcase_66 AC 104 ms
40,984 KB
testcase_67 AC 116 ms
41,248 KB
testcase_68 AC 104 ms
41,484 KB
testcase_69 AC 105 ms
41,152 KB
testcase_70 AC 111 ms
41,112 KB
testcase_71 AC 119 ms
41,144 KB
testcase_72 AC 105 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        long N = sc.nextInt();
        long M = sc.nextInt();
        long[] W = new long[(int)N];
        long wsum = 0;
        for( int i = 0; i < N; i++ ) {
            W[i] = sc.nextInt();
            wsum += W[i];
        }
        
        for( int i = 0; i < N; i++ ) {
            System.out.print((M*W[i])/wsum);
            if( i < N-1 ) System.out.print(" ");
        }
        
        System.out.println();
        
    }
    
}
0