結果

問題 No.1738 What's in the box?
ユーザー ntuda
提出日時 2025-01-11 09:37:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 357 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2025-01-11 09:37:59
合計ジャッジ時間 5,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 68 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

N,M = map(int,input().split())
W = list(map(int,input().split()))
if M == 0:
    print(*W)
x = 0
for w in W:
    x = gcd(x,w)
for i in range(N):
    W[i] //= x
x = 0
if M >= sum(W):
    x = M//sum(W)
    for i in range(N):
        W[i] *= x
    print(*W)
else:
    x = sum(W)//M
    for i in range(N):
        W[i] //= x
    print(*W)
0