結果

問題 No.1738 What's in the box?
ユーザー merlinmerlin
提出日時 2021-11-12 22:06:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 2,499 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 51,372 KB
最終ジャッジ日時 2024-11-25 18:47:09
合計ジャッジ時間 10,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
50,956 KB
testcase_01 AC 69 ms
50,964 KB
testcase_02 AC 73 ms
50,776 KB
testcase_03 AC 90 ms
51,216 KB
testcase_04 AC 85 ms
51,132 KB
testcase_05 AC 82 ms
50,992 KB
testcase_06 AC 85 ms
50,928 KB
testcase_07 WA -
testcase_08 AC 84 ms
51,072 KB
testcase_09 AC 87 ms
51,044 KB
testcase_10 AC 96 ms
50,988 KB
testcase_11 AC 89 ms
51,148 KB
testcase_12 AC 91 ms
50,924 KB
testcase_13 AC 69 ms
51,064 KB
testcase_14 AC 71 ms
50,556 KB
testcase_15 AC 72 ms
51,084 KB
testcase_16 AC 71 ms
50,632 KB
testcase_17 AC 70 ms
50,776 KB
testcase_18 WA -
testcase_19 AC 71 ms
50,828 KB
testcase_20 AC 70 ms
50,680 KB
testcase_21 WA -
testcase_22 AC 74 ms
50,888 KB
testcase_23 AC 72 ms
50,944 KB
testcase_24 AC 74 ms
50,796 KB
testcase_25 AC 78 ms
50,764 KB
testcase_26 AC 70 ms
50,660 KB
testcase_27 WA -
testcase_28 AC 69 ms
50,876 KB
testcase_29 AC 72 ms
50,776 KB
testcase_30 AC 72 ms
51,140 KB
testcase_31 AC 71 ms
51,192 KB
testcase_32 AC 73 ms
50,792 KB
testcase_33 AC 81 ms
50,916 KB
testcase_34 AC 94 ms
50,792 KB
testcase_35 AC 93 ms
51,328 KB
testcase_36 AC 96 ms
51,172 KB
testcase_37 AC 78 ms
50,540 KB
testcase_38 AC 82 ms
50,804 KB
testcase_39 AC 90 ms
51,148 KB
testcase_40 AC 83 ms
51,188 KB
testcase_41 AC 94 ms
50,964 KB
testcase_42 AC 89 ms
50,480 KB
testcase_43 AC 85 ms
51,200 KB
testcase_44 AC 95 ms
51,116 KB
testcase_45 AC 91 ms
51,272 KB
testcase_46 AC 99 ms
51,328 KB
testcase_47 AC 82 ms
50,860 KB
testcase_48 AC 85 ms
50,908 KB
testcase_49 AC 89 ms
51,052 KB
testcase_50 AC 93 ms
51,160 KB
testcase_51 AC 94 ms
50,748 KB
testcase_52 AC 83 ms
50,932 KB
testcase_53 AC 72 ms
50,660 KB
testcase_54 AC 70 ms
51,168 KB
testcase_55 AC 72 ms
51,072 KB
testcase_56 WA -
testcase_57 AC 70 ms
50,996 KB
testcase_58 AC 70 ms
50,940 KB
testcase_59 AC 70 ms
51,176 KB
testcase_60 AC 70 ms
50,980 KB
testcase_61 AC 68 ms
50,844 KB
testcase_62 AC 71 ms
51,340 KB
testcase_63 AC 71 ms
51,108 KB
testcase_64 AC 70 ms
50,908 KB
testcase_65 AC 71 ms
50,884 KB
testcase_66 WA -
testcase_67 AC 68 ms
50,764 KB
testcase_68 AC 65 ms
50,928 KB
testcase_69 AC 70 ms
50,964 KB
testcase_70 AC 68 ms
50,796 KB
testcase_71 AC 70 ms
50,792 KB
testcase_72 AC 68 ms
50,904 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,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