結果
問題 | No.1738 What's in the box? |
ユーザー |
|
提出日時 | 2021-11-12 22:18:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 1,093 bytes |
コンパイル時間 | 415 ms |
コンパイル使用メモリ | 82,972 KB |
実行使用メモリ | 62,592 KB |
最終ジャッジ日時 | 2024-11-25 19:17:17 |
合計ジャッジ時間 | 5,715 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 70 |
ソースコード
import sys#sys.setrecursionlimit(10 ** 6)INF = float('inf')#10**20,2**63に変えるのもありMOD = 10**9 + 7MOD2 = 998244353from collections import defaultdictdef 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 reduceimport mathdef 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)if GCD == 0:Ans = [0]*Nprint(*Ans)exit()for n in range(N):W[n] = W[n]//GCD#print(sum(W))SUM = sum(W)if SUM == 0:Ans = [0]*Nprint(*Ans)exit()Weight = M//SUMAns = [0]*Nfor n in range(N):Ans[n] = W[n]*Weightprint(*Ans)returnsolve()