結果
問題 | No.1738 What's in the box? |
ユーザー |
![]() |
提出日時 | 2025-01-11 09:38:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 368 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 81,740 KB |
実行使用メモリ | 61,736 KB |
最終ジャッジ日時 | 2025-01-11 09:38:20 |
合計ジャッジ時間 | 5,101 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 70 |
ソースコード
from math import gcd N,M = map(int,input().split()) W = list(map(int,input().split())) if M == 0: print(*W) exit() 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)