結果

問題 No.1738 What's in the box?
ユーザー McGregorshMcGregorsh
提出日時 2022-07-26 15:06:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,547 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 86,764 KB
実行使用メモリ 93,892 KB
最終ジャッジ日時 2023-09-23 07:14:43
合計ジャッジ時間 23,243 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
92,512 KB
testcase_01 AC 245 ms
92,432 KB
testcase_02 AC 246 ms
92,340 KB
testcase_03 AC 286 ms
93,692 KB
testcase_04 AC 290 ms
93,428 KB
testcase_05 AC 286 ms
93,368 KB
testcase_06 AC 306 ms
93,664 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 302 ms
93,420 KB
testcase_10 WA -
testcase_11 AC 289 ms
93,784 KB
testcase_12 AC 298 ms
93,540 KB
testcase_13 AC 250 ms
92,544 KB
testcase_14 WA -
testcase_15 AC 253 ms
92,592 KB
testcase_16 AC 253 ms
92,396 KB
testcase_17 AC 251 ms
92,528 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 250 ms
92,532 KB
testcase_21 AC 250 ms
92,476 KB
testcase_22 AC 251 ms
92,296 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 275 ms
93,244 KB
testcase_34 AC 279 ms
93,364 KB
testcase_35 AC 269 ms
93,348 KB
testcase_36 AC 279 ms
93,100 KB
testcase_37 AC 272 ms
93,320 KB
testcase_38 WA -
testcase_39 AC 278 ms
93,252 KB
testcase_40 AC 292 ms
93,428 KB
testcase_41 WA -
testcase_42 AC 279 ms
93,104 KB
testcase_43 AC 292 ms
93,660 KB
testcase_44 AC 295 ms
93,892 KB
testcase_45 AC 282 ms
93,700 KB
testcase_46 AC 292 ms
93,260 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 282 ms
93,612 KB
testcase_50 AC 285 ms
93,636 KB
testcase_51 AC 285 ms
93,192 KB
testcase_52 AC 287 ms
93,772 KB
testcase_53 WA -
testcase_54 AC 242 ms
92,344 KB
testcase_55 AC 243 ms
92,300 KB
testcase_56 AC 245 ms
92,612 KB
testcase_57 AC 248 ms
92,528 KB
testcase_58 AC 250 ms
92,288 KB
testcase_59 AC 241 ms
92,552 KB
testcase_60 WA -
testcase_61 AC 244 ms
92,604 KB
testcase_62 AC 240 ms
92,368 KB
testcase_63 AC 240 ms
92,588 KB
testcase_64 AC 244 ms
92,276 KB
testcase_65 AC 244 ms
92,340 KB
testcase_66 AC 241 ms
92,536 KB
testcase_67 AC 243 ms
92,308 KB
testcase_68 AC 240 ms
92,448 KB
testcase_69 AC 240 ms
92,540 KB
testcase_70 AC 243 ms
92,260 KB
testcase_71 AC 246 ms
92,516 KB
testcase_72 AC 243 ms
92,604 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) / m
   
   ans = [0] * n
   for i in range(n):
   	  ans[i] = int(w[i]/tanka)
   print(*ans)
   
if __name__ == '__main__':
    main()

0