結果

問題 No.1738 What's in the box?
ユーザー merlinmerlin
提出日時 2021-11-12 22:11:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 76,300 KB
実行使用メモリ 38,520 KB
最終ジャッジ日時 2024-05-04 09:04:35
合計ジャッジ時間 8,309 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
38,088 KB
testcase_01 AC 68 ms
37,828 KB
testcase_02 AC 61 ms
38,328 KB
testcase_03 AC 74 ms
37,948 KB
testcase_04 AC 87 ms
38,164 KB
testcase_05 AC 82 ms
38,496 KB
testcase_06 AC 83 ms
38,188 KB
testcase_07 AC 85 ms
37,952 KB
testcase_08 AC 83 ms
38,068 KB
testcase_09 AC 84 ms
38,372 KB
testcase_10 AC 72 ms
38,368 KB
testcase_11 AC 83 ms
37,948 KB
testcase_12 AC 73 ms
38,064 KB
testcase_13 AC 58 ms
37,984 KB
testcase_14 AC 58 ms
37,772 KB
testcase_15 AC 59 ms
38,216 KB
testcase_16 AC 59 ms
38,120 KB
testcase_17 AC 59 ms
38,032 KB
testcase_18 AC 60 ms
37,832 KB
testcase_19 AC 62 ms
38,120 KB
testcase_20 AC 62 ms
37,832 KB
testcase_21 AC 64 ms
37,868 KB
testcase_22 AC 58 ms
37,832 KB
testcase_23 AC 60 ms
38,000 KB
testcase_24 AC 66 ms
38,244 KB
testcase_25 AC 61 ms
38,188 KB
testcase_26 AC 60 ms
37,580 KB
testcase_27 AC 59 ms
38,216 KB
testcase_28 AC 60 ms
37,952 KB
testcase_29 AC 62 ms
38,144 KB
testcase_30 AC 70 ms
37,832 KB
testcase_31 AC 59 ms
37,956 KB
testcase_32 AC 62 ms
37,960 KB
testcase_33 AC 80 ms
38,520 KB
testcase_34 AC 83 ms
38,184 KB
testcase_35 AC 80 ms
38,212 KB
testcase_36 AC 73 ms
38,376 KB
testcase_37 AC 75 ms
37,824 KB
testcase_38 AC 82 ms
38,192 KB
testcase_39 AC 70 ms
38,216 KB
testcase_40 AC 82 ms
38,184 KB
testcase_41 AC 84 ms
38,420 KB
testcase_42 AC 84 ms
38,172 KB
testcase_43 AC 72 ms
38,204 KB
testcase_44 AC 77 ms
38,028 KB
testcase_45 AC 75 ms
38,192 KB
testcase_46 AC 84 ms
38,408 KB
testcase_47 AC 75 ms
38,216 KB
testcase_48 AC 74 ms
38,476 KB
testcase_49 AC 73 ms
38,388 KB
testcase_50 AC 70 ms
38,216 KB
testcase_51 AC 82 ms
38,368 KB
testcase_52 AC 84 ms
38,336 KB
testcase_53 AC 61 ms
37,552 KB
testcase_54 AC 61 ms
38,160 KB
testcase_55 AC 62 ms
37,996 KB
testcase_56 AC 69 ms
37,828 KB
testcase_57 AC 58 ms
38,172 KB
testcase_58 AC 59 ms
37,784 KB
testcase_59 AC 58 ms
37,440 KB
testcase_60 AC 58 ms
38,088 KB
testcase_61 AC 67 ms
38,112 KB
testcase_62 AC 63 ms
38,216 KB
testcase_63 AC 58 ms
38,264 KB
testcase_64 AC 61 ms
38,160 KB
testcase_65 AC 59 ms
37,572 KB
testcase_66 AC 68 ms
38,288 KB
testcase_67 AC 61 ms
38,136 KB
testcase_68 AC 62 ms
38,192 KB
testcase_69 AC 60 ms
38,056 KB
testcase_70 AC 57 ms
37,780 KB
testcase_71 AC 61 ms
37,672 KB
testcase_72 AC 63 ms
38,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),m=Integer.parseInt(s[1]);
        int a[]=new int[n],i; long tot=0;
        s=bu.readLine().split(" ");
        for(i=0;i<n;i++)
        {
            a[i]=Integer.parseInt(s[i]);
            tot+=a[i];
        }

        for(i=0;i<n;i++)
        {
            long ans=0;
            if(a[i]!=0) ans=1l*a[i]*m/tot;
            sb.append(ans+" ");
        }
        System.out.println(sb);
    }
}
0