結果

問題 No.1738 What's in the box?
ユーザー tentententen
提出日時 2023-04-19 08:45:26
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,133 bytes
コンパイル時間 2,822 ms
コンパイル使用メモリ 88,152 KB
実行使用メモリ 50,520 KB
最終ジャッジ日時 2024-04-22 09:14:27
合計ジャッジ時間 9,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,328 KB
testcase_01 AC 56 ms
37,620 KB
testcase_02 AC 57 ms
37,504 KB
testcase_03 AC 72 ms
38,056 KB
testcase_04 AC 75 ms
37,940 KB
testcase_05 AC 71 ms
38,112 KB
testcase_06 AC 70 ms
37,812 KB
testcase_07 AC 72 ms
38,188 KB
testcase_08 AC 72 ms
38,140 KB
testcase_09 AC 75 ms
38,684 KB
testcase_10 AC 74 ms
37,672 KB
testcase_11 AC 74 ms
38,120 KB
testcase_12 AC 72 ms
38,032 KB
testcase_13 AC 62 ms
37,916 KB
testcase_14 AC 55 ms
37,036 KB
testcase_15 AC 59 ms
37,724 KB
testcase_16 AC 58 ms
37,640 KB
testcase_17 AC 59 ms
37,164 KB
testcase_18 AC 57 ms
37,544 KB
testcase_19 AC 57 ms
37,596 KB
testcase_20 AC 55 ms
37,324 KB
testcase_21 AC 60 ms
37,756 KB
testcase_22 AC 59 ms
37,440 KB
testcase_23 AC 57 ms
37,444 KB
testcase_24 AC 63 ms
37,668 KB
testcase_25 AC 59 ms
37,464 KB
testcase_26 AC 61 ms
37,416 KB
testcase_27 AC 54 ms
37,244 KB
testcase_28 AC 57 ms
37,512 KB
testcase_29 AC 56 ms
37,540 KB
testcase_30 AC 70 ms
37,760 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 79 ms
37,888 KB
testcase_34 AC 73 ms
38,016 KB
testcase_35 AC 69 ms
38,320 KB
testcase_36 AC 71 ms
38,008 KB
testcase_37 AC 76 ms
37,884 KB
testcase_38 AC 66 ms
37,916 KB
testcase_39 AC 68 ms
37,636 KB
testcase_40 AC 82 ms
38,464 KB
testcase_41 AC 70 ms
37,904 KB
testcase_42 AC 70 ms
37,936 KB
testcase_43 AC 84 ms
38,784 KB
testcase_44 AC 72 ms
38,220 KB
testcase_45 AC 70 ms
38,060 KB
testcase_46 AC 71 ms
38,004 KB
testcase_47 AC 68 ms
38,024 KB
testcase_48 AC 74 ms
38,232 KB
testcase_49 AC 79 ms
37,964 KB
testcase_50 AC 82 ms
38,092 KB
testcase_51 AC 74 ms
38,260 KB
testcase_52 AC 71 ms
38,188 KB
testcase_53 AC 58 ms
37,648 KB
testcase_54 AC 59 ms
37,644 KB
testcase_55 AC 57 ms
37,680 KB
testcase_56 AC 60 ms
37,836 KB
testcase_57 AC 57 ms
37,412 KB
testcase_58 AC 58 ms
37,176 KB
testcase_59 AC 58 ms
37,752 KB
testcase_60 AC 58 ms
37,300 KB
testcase_61 AC 58 ms
37,476 KB
testcase_62 AC 58 ms
37,568 KB
testcase_63 AC 58 ms
37,472 KB
testcase_64 AC 56 ms
37,416 KB
testcase_65 AC 56 ms
37,464 KB
testcase_66 AC 57 ms
37,388 KB
testcase_67 AC 60 ms
37,500 KB
testcase_68 AC 56 ms
37,504 KB
testcase_69 AC 57 ms
37,520 KB
testcase_70 AC 57 ms
37,428 KB
testcase_71 AC 62 ms
37,928 KB
testcase_72 AC 62 ms
37,896 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);
        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