結果

問題 No.1738 What's in the box?
ユーザー ks2mks2m
提出日時 2021-11-12 21:40:08
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 613 bytes
コンパイル時間 2,673 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-05-04 07:48:57
合計ジャッジ時間 13,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,308 KB
testcase_01 AC 101 ms
41,152 KB
testcase_02 AC 112 ms
41,700 KB
testcase_03 AC 157 ms
42,320 KB
testcase_04 AC 154 ms
42,508 KB
testcase_05 AC 162 ms
42,592 KB
testcase_06 AC 161 ms
42,716 KB
testcase_07 AC 164 ms
42,508 KB
testcase_08 AC 161 ms
42,580 KB
testcase_09 AC 166 ms
42,876 KB
testcase_10 AC 161 ms
42,396 KB
testcase_11 AC 149 ms
42,480 KB
testcase_12 AC 164 ms
42,396 KB
testcase_13 AC 112 ms
41,428 KB
testcase_14 AC 114 ms
41,344 KB
testcase_15 AC 111 ms
41,488 KB
testcase_16 AC 118 ms
41,496 KB
testcase_17 AC 112 ms
41,556 KB
testcase_18 AC 112 ms
41,172 KB
testcase_19 AC 113 ms
41,292 KB
testcase_20 AC 98 ms
41,724 KB
testcase_21 AC 122 ms
41,608 KB
testcase_22 AC 123 ms
41,296 KB
testcase_23 AC 106 ms
41,572 KB
testcase_24 AC 125 ms
41,812 KB
testcase_25 AC 124 ms
41,532 KB
testcase_26 AC 95 ms
41,424 KB
testcase_27 AC 113 ms
41,524 KB
testcase_28 AC 115 ms
41,520 KB
testcase_29 AC 110 ms
41,364 KB
testcase_30 AC 110 ms
41,544 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 156 ms
42,488 KB
testcase_34 AC 160 ms
42,696 KB
testcase_35 AC 144 ms
42,400 KB
testcase_36 AC 167 ms
42,864 KB
testcase_37 AC 151 ms
42,200 KB
testcase_38 AC 158 ms
42,720 KB
testcase_39 AC 160 ms
42,584 KB
testcase_40 AC 160 ms
42,680 KB
testcase_41 AC 162 ms
42,700 KB
testcase_42 AC 168 ms
42,428 KB
testcase_43 AC 163 ms
42,716 KB
testcase_44 AC 167 ms
42,976 KB
testcase_45 AC 162 ms
42,664 KB
testcase_46 AC 161 ms
42,712 KB
testcase_47 AC 168 ms
42,580 KB
testcase_48 AC 160 ms
42,428 KB
testcase_49 AC 157 ms
42,680 KB
testcase_50 AC 159 ms
42,700 KB
testcase_51 AC 178 ms
42,260 KB
testcase_52 AC 148 ms
42,712 KB
testcase_53 AC 112 ms
41,480 KB
testcase_54 AC 113 ms
41,552 KB
testcase_55 AC 107 ms
41,648 KB
testcase_56 AC 120 ms
41,572 KB
testcase_57 AC 102 ms
41,300 KB
testcase_58 AC 101 ms
41,700 KB
testcase_59 AC 111 ms
41,392 KB
testcase_60 AC 99 ms
41,392 KB
testcase_61 AC 111 ms
41,696 KB
testcase_62 AC 109 ms
40,156 KB
testcase_63 AC 111 ms
41,688 KB
testcase_64 AC 110 ms
41,432 KB
testcase_65 AC 112 ms
41,304 KB
testcase_66 AC 101 ms
41,512 KB
testcase_67 AC 101 ms
41,416 KB
testcase_68 AC 110 ms
41,740 KB
testcase_69 AC 97 ms
41,440 KB
testcase_70 AC 103 ms
41,280 KB
testcase_71 AC 101 ms
41,496 KB
testcase_72 AC 112 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long m = sc.nextInt();
		int[] w = new int[n];
		for (int i = 0; i < n; i++) {
			w[i] = sc.nextInt();
		}
		sc.close();

		long sum = 0;
		for (int i = 0; i < n; i++) {
			sum += w[i];
		}

		// x = sum / m
		// w[i]m / sum
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
			long ans = w[i] * m / sum;
			sb.append(ans).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}
}
0