結果

問題 No.1738 What's in the box?
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-11-12 22:19:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 79,436 KB
実行使用メモリ 43,916 KB
最終ジャッジ日時 2024-05-04 09:19:29
合計ジャッジ時間 15,857 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,068 KB
testcase_01 AC 127 ms
41,384 KB
testcase_02 AC 130 ms
41,264 KB
testcase_03 AC 214 ms
43,420 KB
testcase_04 AC 209 ms
43,728 KB
testcase_05 AC 217 ms
43,316 KB
testcase_06 AC 227 ms
43,320 KB
testcase_07 AC 215 ms
43,820 KB
testcase_08 AC 215 ms
43,916 KB
testcase_09 AC 207 ms
43,564 KB
testcase_10 AC 193 ms
43,076 KB
testcase_11 AC 199 ms
43,508 KB
testcase_12 AC 207 ms
43,512 KB
testcase_13 AC 113 ms
41,504 KB
testcase_14 AC 119 ms
41,148 KB
testcase_15 AC 131 ms
41,508 KB
testcase_16 AC 112 ms
40,620 KB
testcase_17 AC 121 ms
41,336 KB
testcase_18 AC 124 ms
41,352 KB
testcase_19 AC 124 ms
40,932 KB
testcase_20 AC 109 ms
41,168 KB
testcase_21 AC 141 ms
41,876 KB
testcase_22 AC 115 ms
41,764 KB
testcase_23 AC 113 ms
41,636 KB
testcase_24 AC 159 ms
41,752 KB
testcase_25 AC 153 ms
42,280 KB
testcase_26 AC 109 ms
41,524 KB
testcase_27 AC 114 ms
41,636 KB
testcase_28 AC 127 ms
41,612 KB
testcase_29 AC 125 ms
40,696 KB
testcase_30 AC 125 ms
40,612 KB
testcase_31 AC 145 ms
41,844 KB
testcase_32 AC 145 ms
42,272 KB
testcase_33 AC 200 ms
43,048 KB
testcase_34 AC 208 ms
43,416 KB
testcase_35 AC 206 ms
43,232 KB
testcase_36 AC 209 ms
43,012 KB
testcase_37 AC 210 ms
43,260 KB
testcase_38 AC 216 ms
43,800 KB
testcase_39 AC 201 ms
43,152 KB
testcase_40 AC 218 ms
43,644 KB
testcase_41 AC 208 ms
43,752 KB
testcase_42 AC 196 ms
43,336 KB
testcase_43 AC 207 ms
43,548 KB
testcase_44 AC 216 ms
43,492 KB
testcase_45 AC 219 ms
43,660 KB
testcase_46 AC 213 ms
43,740 KB
testcase_47 AC 206 ms
43,156 KB
testcase_48 AC 217 ms
43,760 KB
testcase_49 AC 210 ms
43,612 KB
testcase_50 AC 209 ms
43,772 KB
testcase_51 AC 211 ms
43,432 KB
testcase_52 AC 222 ms
43,316 KB
testcase_53 AC 123 ms
41,804 KB
testcase_54 AC 121 ms
40,556 KB
testcase_55 AC 119 ms
40,236 KB
testcase_56 AC 140 ms
41,616 KB
testcase_57 AC 123 ms
41,892 KB
testcase_58 AC 122 ms
40,368 KB
testcase_59 AC 118 ms
40,356 KB
testcase_60 AC 120 ms
41,620 KB
testcase_61 AC 124 ms
41,664 KB
testcase_62 AC 103 ms
40,104 KB
testcase_63 AC 116 ms
40,368 KB
testcase_64 AC 117 ms
41,400 KB
testcase_65 AC 116 ms
41,764 KB
testcase_66 AC 127 ms
41,464 KB
testcase_67 AC 115 ms
41,712 KB
testcase_68 AC 119 ms
41,104 KB
testcase_69 AC 125 ms
41,744 KB
testcase_70 AC 118 ms
40,636 KB
testcase_71 AC 101 ms
40,228 KB
testcase_72 AC 125 ms
41,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int N = sc.nextInt(), M = sc.nextInt();
			int[] W = new int[N];
			for (int i = 0;i < N;++ i) W[i] = sc.nextInt();
			int[] A = new int[N];
			if (M != 0) {
				int gcd = 0;
				for (int i : W) gcd = gcd(gcd, i);
				int sum = 0;
				for (int i = 0;i < N;++ i) sum += W[i] /= gcd;
				for (int i = 0;i < N;++ i) A[i] = M / sum * W[i];
			}
			System.out.print(A[0]);
			for (int i = 1;i < N;++ i) System.out.print(" " + A[i]);
			System.out.println();
		}
	}

	static int gcd(int a, int b) {
		while(b != 0) if((a %= b) != 0) b %= a; else return b;
		return a;
	}
}
0