結果

問題 No.1738 What's in the box?
ユーザー ripityripity
提出日時 2021-11-12 21:58:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 2,646 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 55,412 KB
最終ジャッジ日時 2024-11-25 18:24:24
合計ジャッジ時間 16,181 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,892 KB
testcase_01 AC 110 ms
52,736 KB
testcase_02 AC 115 ms
53,732 KB
testcase_03 AC 216 ms
54,924 KB
testcase_04 AC 229 ms
54,944 KB
testcase_05 AC 222 ms
55,124 KB
testcase_06 AC 222 ms
55,244 KB
testcase_07 AC 227 ms
55,392 KB
testcase_08 AC 223 ms
54,884 KB
testcase_09 AC 222 ms
55,260 KB
testcase_10 AC 222 ms
54,808 KB
testcase_11 AC 212 ms
55,144 KB
testcase_12 AC 213 ms
55,060 KB
testcase_13 AC 124 ms
53,960 KB
testcase_14 AC 123 ms
53,984 KB
testcase_15 AC 127 ms
53,932 KB
testcase_16 AC 124 ms
53,952 KB
testcase_17 AC 109 ms
52,784 KB
testcase_18 AC 117 ms
53,844 KB
testcase_19 AC 125 ms
53,960 KB
testcase_20 AC 128 ms
53,952 KB
testcase_21 AC 142 ms
54,068 KB
testcase_22 AC 135 ms
54,040 KB
testcase_23 AC 120 ms
53,992 KB
testcase_24 AC 155 ms
54,388 KB
testcase_25 AC 156 ms
54,132 KB
testcase_26 AC 123 ms
53,888 KB
testcase_27 AC 122 ms
53,756 KB
testcase_28 AC 115 ms
52,672 KB
testcase_29 AC 120 ms
53,080 KB
testcase_30 AC 118 ms
54,292 KB
testcase_31 AC 135 ms
54,140 KB
testcase_32 AC 146 ms
53,804 KB
testcase_33 AC 215 ms
54,984 KB
testcase_34 AC 222 ms
54,740 KB
testcase_35 AC 213 ms
54,916 KB
testcase_36 AC 206 ms
54,820 KB
testcase_37 AC 219 ms
54,976 KB
testcase_38 AC 220 ms
54,948 KB
testcase_39 AC 218 ms
55,196 KB
testcase_40 AC 237 ms
54,644 KB
testcase_41 AC 237 ms
55,412 KB
testcase_42 AC 218 ms
54,864 KB
testcase_43 AC 222 ms
55,104 KB
testcase_44 AC 209 ms
55,264 KB
testcase_45 AC 222 ms
55,296 KB
testcase_46 AC 223 ms
54,940 KB
testcase_47 AC 225 ms
54,796 KB
testcase_48 AC 220 ms
55,136 KB
testcase_49 AC 220 ms
55,124 KB
testcase_50 AC 213 ms
55,100 KB
testcase_51 AC 217 ms
55,216 KB
testcase_52 AC 217 ms
54,796 KB
testcase_53 AC 113 ms
53,800 KB
testcase_54 AC 117 ms
53,784 KB
testcase_55 AC 120 ms
53,672 KB
testcase_56 AC 147 ms
54,024 KB
testcase_57 AC 123 ms
54,004 KB
testcase_58 AC 110 ms
52,852 KB
testcase_59 AC 116 ms
53,672 KB
testcase_60 AC 104 ms
52,776 KB
testcase_61 AC 109 ms
52,848 KB
testcase_62 AC 110 ms
52,884 KB
testcase_63 AC 125 ms
53,972 KB
testcase_64 AC 124 ms
53,736 KB
testcase_65 AC 131 ms
53,948 KB
testcase_66 AC 115 ms
53,964 KB
testcase_67 AC 117 ms
53,688 KB
testcase_68 AC 102 ms
52,576 KB
testcase_69 AC 124 ms
53,676 KB
testcase_70 AC 131 ms
53,972 KB
testcase_71 AC 118 ms
53,844 KB
testcase_72 AC 116 ms
53,048 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( wsum == 0 ? 0 : (M*W[i])/wsum );
            if( i < N-1 ) System.out.print(" ");
        }
        
        System.out.println();
        
    }
    
}
0