結果

問題 No.1738 What's in the box?
ユーザー merlinmerlin
提出日時 2021-11-12 22:11:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 76,388 KB
実行使用メモリ 38,484 KB
最終ジャッジ日時 2024-11-25 19:01:49
合計ジャッジ時間 10,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
38,068 KB
testcase_01 AC 72 ms
38,180 KB
testcase_02 AC 70 ms
37,724 KB
testcase_03 AC 95 ms
38,096 KB
testcase_04 AC 88 ms
38,336 KB
testcase_05 AC 96 ms
38,256 KB
testcase_06 AC 90 ms
38,220 KB
testcase_07 AC 91 ms
38,216 KB
testcase_08 AC 89 ms
38,268 KB
testcase_09 AC 89 ms
37,940 KB
testcase_10 AC 88 ms
37,992 KB
testcase_11 AC 96 ms
37,880 KB
testcase_12 AC 98 ms
38,248 KB
testcase_13 AC 70 ms
37,672 KB
testcase_14 AC 73 ms
38,060 KB
testcase_15 AC 69 ms
37,692 KB
testcase_16 AC 71 ms
37,804 KB
testcase_17 AC 69 ms
37,836 KB
testcase_18 AC 71 ms
37,672 KB
testcase_19 AC 72 ms
37,800 KB
testcase_20 AC 70 ms
38,112 KB
testcase_21 AC 76 ms
38,024 KB
testcase_22 AC 73 ms
37,784 KB
testcase_23 AC 70 ms
37,804 KB
testcase_24 AC 78 ms
37,820 KB
testcase_25 AC 85 ms
37,548 KB
testcase_26 AC 70 ms
38,200 KB
testcase_27 AC 70 ms
37,836 KB
testcase_28 AC 74 ms
37,992 KB
testcase_29 AC 73 ms
37,800 KB
testcase_30 AC 68 ms
37,664 KB
testcase_31 AC 73 ms
37,988 KB
testcase_32 AC 72 ms
37,572 KB
testcase_33 AC 82 ms
38,080 KB
testcase_34 AC 95 ms
38,336 KB
testcase_35 AC 82 ms
38,184 KB
testcase_36 AC 85 ms
38,076 KB
testcase_37 AC 86 ms
37,948 KB
testcase_38 AC 95 ms
38,056 KB
testcase_39 AC 88 ms
37,924 KB
testcase_40 AC 98 ms
37,936 KB
testcase_41 AC 98 ms
38,136 KB
testcase_42 AC 90 ms
38,296 KB
testcase_43 AC 100 ms
38,212 KB
testcase_44 AC 93 ms
37,924 KB
testcase_45 AC 84 ms
38,204 KB
testcase_46 AC 88 ms
38,184 KB
testcase_47 AC 90 ms
37,924 KB
testcase_48 AC 100 ms
37,944 KB
testcase_49 AC 94 ms
38,008 KB
testcase_50 AC 96 ms
38,244 KB
testcase_51 AC 95 ms
38,168 KB
testcase_52 AC 97 ms
38,484 KB
testcase_53 AC 70 ms
37,868 KB
testcase_54 AC 73 ms
37,720 KB
testcase_55 AC 72 ms
37,556 KB
testcase_56 AC 71 ms
37,920 KB
testcase_57 AC 71 ms
37,912 KB
testcase_58 AC 69 ms
38,084 KB
testcase_59 AC 70 ms
38,088 KB
testcase_60 AC 69 ms
37,968 KB
testcase_61 AC 70 ms
37,616 KB
testcase_62 AC 72 ms
38,052 KB
testcase_63 AC 71 ms
38,016 KB
testcase_64 AC 69 ms
37,880 KB
testcase_65 AC 74 ms
38,068 KB
testcase_66 AC 70 ms
37,512 KB
testcase_67 AC 69 ms
38,068 KB
testcase_68 AC 68 ms
37,688 KB
testcase_69 AC 67 ms
37,944 KB
testcase_70 AC 72 ms
37,940 KB
testcase_71 AC 71 ms
37,980 KB
testcase_72 AC 70 ms
37,656 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