結果

問題 No.1738 What's in the box?
ユーザー moharan627
提出日時 2021-11-12 22:16:02
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 949 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-11-25 19:12:52
合計ジャッジ時間 5,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 68 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
#10**20,2**63に変えるのもあり
MOD = 10**9 + 7
MOD2 = 998244353
from collections import defaultdict
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    from functools import reduce
    import math
    def my_lcm_base(x, y):
        return (x * y) // math.gcd(x, y)
    def my_lcm(*numbers):
        return reduce(my_lcm_base, numbers, 1)
    def my_gcd(*numbers):
        return reduce(math.gcd, numbers)
    N,M = MI()
    W = LI()
    GCD = my_gcd(*W)
    for n in range(N):
        W[n] = W[n]//GCD
    #print(sum(W))
    SUM = sum(W)
    Weight = M//SUM
    Ans = [0]*N
    for n in range(N):
        Ans[n] = W[n]*Weight
    print(*Ans)
    return
solve()
0