結果

問題 No.1738 What's in the box?
ユーザー McGregorshMcGregorsh
提出日時 2022-07-26 15:07:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,574 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 87,300 KB
実行使用メモリ 94,072 KB
最終ジャッジ日時 2023-09-23 07:16:13
合計ジャッジ時間 22,958 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
92,464 KB
testcase_01 AC 248 ms
92,536 KB
testcase_02 AC 254 ms
92,460 KB
testcase_03 AC 294 ms
93,656 KB
testcase_04 AC 295 ms
93,836 KB
testcase_05 AC 291 ms
93,560 KB
testcase_06 AC 297 ms
93,592 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 304 ms
93,380 KB
testcase_10 WA -
testcase_11 AC 295 ms
93,792 KB
testcase_12 AC 296 ms
93,656 KB
testcase_13 AC 249 ms
92,528 KB
testcase_14 WA -
testcase_15 AC 251 ms
92,344 KB
testcase_16 AC 249 ms
92,652 KB
testcase_17 AC 246 ms
92,588 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 251 ms
92,460 KB
testcase_21 AC 250 ms
92,448 KB
testcase_22 AC 255 ms
92,420 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 280 ms
93,468 KB
testcase_34 AC 292 ms
93,700 KB
testcase_35 AC 279 ms
93,744 KB
testcase_36 AC 287 ms
93,504 KB
testcase_37 AC 285 ms
93,844 KB
testcase_38 WA -
testcase_39 AC 286 ms
93,324 KB
testcase_40 AC 295 ms
93,696 KB
testcase_41 WA -
testcase_42 AC 292 ms
93,440 KB
testcase_43 AC 300 ms
93,732 KB
testcase_44 AC 296 ms
93,668 KB
testcase_45 AC 287 ms
93,528 KB
testcase_46 AC 298 ms
93,592 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 289 ms
93,956 KB
testcase_50 AC 289 ms
93,848 KB
testcase_51 AC 300 ms
93,528 KB
testcase_52 AC 296 ms
93,736 KB
testcase_53 WA -
testcase_54 AC 249 ms
92,264 KB
testcase_55 AC 251 ms
92,592 KB
testcase_56 AC 252 ms
92,532 KB
testcase_57 AC 248 ms
92,276 KB
testcase_58 AC 245 ms
92,452 KB
testcase_59 AC 249 ms
92,372 KB
testcase_60 WA -
testcase_61 AC 250 ms
92,368 KB
testcase_62 AC 249 ms
92,536 KB
testcase_63 AC 246 ms
92,504 KB
testcase_64 AC 245 ms
92,344 KB
testcase_65 AC 247 ms
92,624 KB
testcase_66 AC 247 ms
92,620 KB
testcase_67 AC 250 ms
92,608 KB
testcase_68 AC 247 ms
92,528 KB
testcase_69 AC 249 ms
92,288 KB
testcase_70 AC 253 ms
92,444 KB
testcase_71 AC 244 ms
92,476 KB
testcase_72 AC 243 ms
92,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from fractions import Fraction
from math import ceil, floor, sqrt, pi, factorial, gcd
from copy import deepcopy
from collections import Counter, deque, defaultdict
from heapq import heapify, heappop, heappush
from itertools import accumulate, product, combinations, combinations_with_replacement, permutations
from bisect import bisect, bisect_left, bisect_right
from functools import reduce
from decimal import Decimal, getcontext
def i_input(): return int(input())
def i_map(): return map(int, input().split())
def i_list(): return list(i_map())
def i_row(N): return [i_input() for _ in range(N)]
def i_row_list(N): return [i_list() for _ in range(N)]
def s_input(): return input()
def s_map(): return input().split()
def s_list(): return list(s_map())
def s_row(N): return [s_input for _ in range(N)]
def s_row_str(N): return [s_list() for _ in range(N)]
def s_row_list(N): return [list(s_input()) for _ in range(N)]
def lcm(a, b): return a * b // gcd(a, b)
def get_distance(x1, y1, x2, y2):
	  d = sqrt((x2 - x1) ** 2 + (y2 - y1) ** 2)
	  return d
def rotate(table):
   	  n_fild = []
   	  for x in zip(*table[::-1]):
   	  	  n_fild.append(x)
   	  return n_fild
sys.setrecursionlimit(10 ** 7)
INF = float('inf')
MOD = 10 ** 9 + 7
MOD2 = 998244353


###関数コピーしたか?###
def main():
   
   n, m = i_map()
   w = i_list()
   
   sum_wight = sum(w)
   tanka = Decimal(sum_wight) / Decimal(m)
   
   ans = [0] * n
   for i in range(n):
   	  ans[i] = int(Decimal(w[i])/Decimal(tanka))
   print(*ans)
   
if __name__ == '__main__':
    main()

0