結果

問題 No.1738 What's in the box?
ユーザー tentententen
提出日時 2023-04-19 08:47:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 2,190 bytes
コンパイル時間 2,439 ms
コンパイル使用メモリ 84,828 KB
実行使用メモリ 38,684 KB
最終ジャッジ日時 2024-04-22 09:16:57
合計ジャッジ時間 9,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
37,532 KB
testcase_01 AC 61 ms
37,888 KB
testcase_02 AC 58 ms
37,416 KB
testcase_03 AC 68 ms
38,152 KB
testcase_04 AC 70 ms
38,128 KB
testcase_05 AC 67 ms
38,172 KB
testcase_06 AC 68 ms
38,160 KB
testcase_07 AC 71 ms
38,284 KB
testcase_08 AC 68 ms
38,012 KB
testcase_09 AC 75 ms
38,528 KB
testcase_10 AC 76 ms
38,016 KB
testcase_11 AC 72 ms
38,080 KB
testcase_12 AC 76 ms
38,024 KB
testcase_13 AC 61 ms
37,568 KB
testcase_14 AC 56 ms
37,488 KB
testcase_15 AC 56 ms
37,392 KB
testcase_16 AC 56 ms
37,400 KB
testcase_17 AC 57 ms
37,176 KB
testcase_18 AC 58 ms
37,512 KB
testcase_19 AC 56 ms
36,964 KB
testcase_20 AC 59 ms
37,516 KB
testcase_21 AC 69 ms
37,892 KB
testcase_22 AC 63 ms
37,544 KB
testcase_23 AC 59 ms
37,368 KB
testcase_24 AC 66 ms
37,876 KB
testcase_25 AC 61 ms
37,996 KB
testcase_26 AC 70 ms
37,416 KB
testcase_27 AC 58 ms
37,492 KB
testcase_28 AC 57 ms
37,504 KB
testcase_29 AC 56 ms
37,168 KB
testcase_30 AC 59 ms
37,336 KB
testcase_31 AC 64 ms
37,548 KB
testcase_32 AC 61 ms
37,404 KB
testcase_33 AC 67 ms
38,108 KB
testcase_34 AC 68 ms
38,092 KB
testcase_35 AC 78 ms
38,112 KB
testcase_36 AC 70 ms
38,024 KB
testcase_37 AC 76 ms
37,660 KB
testcase_38 AC 70 ms
37,912 KB
testcase_39 AC 69 ms
38,012 KB
testcase_40 AC 72 ms
38,684 KB
testcase_41 AC 71 ms
37,948 KB
testcase_42 AC 71 ms
37,924 KB
testcase_43 AC 83 ms
38,548 KB
testcase_44 AC 83 ms
38,300 KB
testcase_45 AC 68 ms
37,896 KB
testcase_46 AC 71 ms
37,804 KB
testcase_47 AC 68 ms
38,008 KB
testcase_48 AC 71 ms
38,024 KB
testcase_49 AC 80 ms
38,396 KB
testcase_50 AC 82 ms
38,244 KB
testcase_51 AC 81 ms
38,024 KB
testcase_52 AC 71 ms
38,312 KB
testcase_53 AC 55 ms
37,044 KB
testcase_54 AC 67 ms
37,176 KB
testcase_55 AC 57 ms
37,276 KB
testcase_56 AC 60 ms
37,824 KB
testcase_57 AC 56 ms
37,568 KB
testcase_58 AC 55 ms
37,048 KB
testcase_59 AC 56 ms
37,512 KB
testcase_60 AC 57 ms
37,644 KB
testcase_61 AC 56 ms
37,248 KB
testcase_62 AC 58 ms
37,648 KB
testcase_63 AC 61 ms
37,552 KB
testcase_64 AC 61 ms
37,960 KB
testcase_65 AC 59 ms
37,584 KB
testcase_66 AC 68 ms
37,648 KB
testcase_67 AC 59 ms
37,116 KB
testcase_68 AC 55 ms
37,152 KB
testcase_69 AC 56 ms
37,048 KB
testcase_70 AC 58 ms
37,616 KB
testcase_71 AC 61 ms
38,132 KB
testcase_72 AC 55 ms
37,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long count = sc.nextInt();
        long[] values = new long[n];
        long total = 0;
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            total += values[i];
        }
        long gcd = getGCD(count, total);
        if (gcd > 0) {
            count /= gcd;
            total /= gcd;
            for (int i = 0; i < n; i++) {
                values[i] /= total;
                values[i] *= count;
            }
        }
        System.out.println(String.join(" ", Arrays.stream(values).mapToObj(String::valueOf).toArray(String[]::new)));
    }
    
    static long getGCD(long x, long y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0