結果
問題 |
No.1738 What's in the box?
|
ユーザー |
![]() |
提出日時 | 2025-01-11 09:36:54 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 359 bytes |
コンパイル時間 | 655 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 65,408 KB |
最終ジャッジ日時 | 2025-01-11 09:37:02 |
合計ジャッジ時間 | 6,971 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 68 RE * 2 |
ソースコード
from math import gcd N,M = map(int,input().split()) W = list(map(int,input().split())) x = 0 for w in W: x = gcd(x,w) for i in range(N): W[i] //= x x = 0 if M == 0: print(*W) elif 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)