結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
37,212 KB
testcase_01 AC 58 ms
37,168 KB
testcase_02 AC 59 ms
37,400 KB
testcase_03 AC 72 ms
38,132 KB
testcase_04 AC 72 ms
38,244 KB
testcase_05 AC 72 ms
38,172 KB
testcase_06 AC 72 ms
38,008 KB
testcase_07 AC 75 ms
38,236 KB
testcase_08 AC 76 ms
37,952 KB
testcase_09 AC 77 ms
38,552 KB
testcase_10 AC 72 ms
37,924 KB
testcase_11 AC 73 ms
38,120 KB
testcase_12 AC 73 ms
37,940 KB
testcase_13 AC 56 ms
37,220 KB
testcase_14 AC 63 ms
37,852 KB
testcase_15 AC 59 ms
37,544 KB
testcase_16 AC 64 ms
37,308 KB
testcase_17 AC 61 ms
37,400 KB
testcase_18 AC 56 ms
37,360 KB
testcase_19 AC 63 ms
37,684 KB
testcase_20 AC 59 ms
37,320 KB
testcase_21 AC 62 ms
37,596 KB
testcase_22 AC 58 ms
37,084 KB
testcase_23 AC 60 ms
37,608 KB
testcase_24 AC 64 ms
37,876 KB
testcase_25 AC 65 ms
37,792 KB
testcase_26 AC 60 ms
37,480 KB
testcase_27 AC 59 ms
37,344 KB
testcase_28 AC 58 ms
37,280 KB
testcase_29 AC 59 ms
37,192 KB
testcase_30 AC 58 ms
37,300 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 70 ms
37,992 KB
testcase_34 AC 72 ms
37,952 KB
testcase_35 AC 68 ms
37,792 KB
testcase_36 AC 78 ms
38,028 KB
testcase_37 AC 67 ms
37,724 KB
testcase_38 AC 72 ms
38,012 KB
testcase_39 AC 71 ms
38,064 KB
testcase_40 AC 79 ms
38,628 KB
testcase_41 AC 73 ms
37,852 KB
testcase_42 AC 71 ms
37,836 KB
testcase_43 AC 73 ms
38,364 KB
testcase_44 AC 86 ms
38,524 KB
testcase_45 AC 75 ms
37,972 KB
testcase_46 AC 73 ms
38,172 KB
testcase_47 AC 72 ms
37,844 KB
testcase_48 AC 73 ms
37,840 KB
testcase_49 AC 72 ms
38,184 KB
testcase_50 AC 72 ms
38,168 KB
testcase_51 AC 74 ms
38,180 KB
testcase_52 AC 82 ms
38,568 KB
testcase_53 AC 73 ms
37,880 KB
testcase_54 AC 65 ms
37,444 KB
testcase_55 AC 57 ms
37,084 KB
testcase_56 AC 59 ms
37,624 KB
testcase_57 AC 57 ms
37,492 KB
testcase_58 AC 57 ms
37,040 KB
testcase_59 AC 59 ms
37,456 KB
testcase_60 AC 59 ms
37,472 KB
testcase_61 AC 59 ms
37,676 KB
testcase_62 AC 62 ms
37,648 KB
testcase_63 AC 59 ms
37,448 KB
testcase_64 AC 70 ms
37,604 KB
testcase_65 AC 57 ms
37,576 KB
testcase_66 AC 68 ms
37,644 KB
testcase_67 AC 59 ms
37,768 KB
testcase_68 AC 58 ms
37,296 KB
testcase_69 AC 59 ms
37,556 KB
testcase_70 AC 58 ms
37,340 KB
testcase_71 AC 57 ms
37,488 KB
testcase_72 AC 57 ms
37,708 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