結果

問題 No.1738 What's in the box?
ユーザー tentententen
提出日時 2023-02-22 14:28:17
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,234 bytes
コンパイル時間 3,351 ms
コンパイル使用メモリ 84,816 KB
実行使用メモリ 50,348 KB
最終ジャッジ日時 2024-07-22 16:33:14
合計ジャッジ時間 8,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,968 KB
testcase_01 AC 51 ms
37,164 KB
testcase_02 AC 52 ms
37,240 KB
testcase_03 AC 57 ms
37,316 KB
testcase_04 AC 55 ms
37,364 KB
testcase_05 AC 56 ms
37,464 KB
testcase_06 AC 59 ms
37,416 KB
testcase_07 AC 60 ms
37,844 KB
testcase_08 AC 56 ms
36,972 KB
testcase_09 AC 59 ms
37,300 KB
testcase_10 AC 58 ms
37,276 KB
testcase_11 AC 56 ms
37,324 KB
testcase_12 AC 58 ms
37,344 KB
testcase_13 AC 51 ms
36,844 KB
testcase_14 AC 50 ms
37,204 KB
testcase_15 AC 51 ms
37,044 KB
testcase_16 AC 50 ms
37,084 KB
testcase_17 AC 51 ms
37,244 KB
testcase_18 AC 52 ms
37,404 KB
testcase_19 AC 52 ms
37,232 KB
testcase_20 AC 53 ms
37,028 KB
testcase_21 AC 50 ms
37,168 KB
testcase_22 AC 50 ms
37,148 KB
testcase_23 AC 51 ms
37,232 KB
testcase_24 AC 55 ms
37,304 KB
testcase_25 AC 55 ms
37,148 KB
testcase_26 AC 51 ms
36,712 KB
testcase_27 AC 51 ms
37,072 KB
testcase_28 AC 52 ms
37,104 KB
testcase_29 AC 49 ms
36,992 KB
testcase_30 AC 51 ms
37,176 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 57 ms
37,264 KB
testcase_34 AC 54 ms
37,336 KB
testcase_35 AC 55 ms
37,060 KB
testcase_36 AC 54 ms
36,968 KB
testcase_37 AC 54 ms
37,364 KB
testcase_38 AC 59 ms
37,400 KB
testcase_39 AC 55 ms
37,332 KB
testcase_40 AC 58 ms
37,744 KB
testcase_41 AC 58 ms
37,292 KB
testcase_42 AC 56 ms
37,312 KB
testcase_43 AC 63 ms
37,888 KB
testcase_44 AC 60 ms
37,596 KB
testcase_45 AC 58 ms
37,332 KB
testcase_46 AC 63 ms
37,352 KB
testcase_47 AC 59 ms
37,328 KB
testcase_48 AC 61 ms
37,404 KB
testcase_49 AC 56 ms
37,320 KB
testcase_50 AC 57 ms
36,972 KB
testcase_51 AC 60 ms
37,464 KB
testcase_52 AC 61 ms
37,916 KB
testcase_53 AC 50 ms
37,124 KB
testcase_54 AC 50 ms
37,168 KB
testcase_55 AC 52 ms
37,076 KB
testcase_56 AC 50 ms
37,216 KB
testcase_57 AC 49 ms
37,112 KB
testcase_58 AC 53 ms
37,020 KB
testcase_59 AC 52 ms
37,364 KB
testcase_60 AC 51 ms
37,008 KB
testcase_61 AC 51 ms
36,932 KB
testcase_62 AC 49 ms
37,236 KB
testcase_63 AC 51 ms
37,136 KB
testcase_64 AC 50 ms
36,928 KB
testcase_65 AC 51 ms
37,008 KB
testcase_66 AC 52 ms
37,188 KB
testcase_67 AC 53 ms
37,112 KB
testcase_68 AC 50 ms
37,296 KB
testcase_69 AC 52 ms
37,192 KB
testcase_70 AC 52 ms
37,048 KB
testcase_71 AC 53 ms
37,204 KB
testcase_72 AC 53 ms
37,172 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();
        int m = 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(m, total);
        m /= gcd;
        total /= gcd;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (i > 0) {
                sb.append(" ");
            }
            if (total == 0) {
                sb.append(0);
            } else {
                sb.append(values[i] * m / total);
            }
        }
        System.out.println(sb);
    }
    
    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