結果

問題 No.1738 What's in the box?
ユーザー McGregorshMcGregorsh
提出日時 2022-07-26 15:06:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,547 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 90,876 KB
最終ジャッジ日時 2024-07-16 07:07:27
合計ジャッジ時間 13,132 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
89,392 KB
testcase_01 AC 127 ms
89,924 KB
testcase_02 AC 135 ms
89,280 KB
testcase_03 AC 168 ms
89,560 KB
testcase_04 AC 169 ms
89,768 KB
testcase_05 AC 161 ms
89,808 KB
testcase_06 AC 169 ms
89,876 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 176 ms
90,652 KB
testcase_10 WA -
testcase_11 AC 164 ms
89,904 KB
testcase_12 AC 171 ms
90,180 KB
testcase_13 AC 129 ms
89,472 KB
testcase_14 WA -
testcase_15 AC 132 ms
89,416 KB
testcase_16 AC 137 ms
89,372 KB
testcase_17 AC 133 ms
89,472 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 130 ms
89,608 KB
testcase_21 AC 136 ms
89,536 KB
testcase_22 AC 132 ms
89,464 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 157 ms
89,800 KB
testcase_34 AC 160 ms
90,056 KB
testcase_35 AC 156 ms
89,788 KB
testcase_36 AC 165 ms
89,624 KB
testcase_37 AC 162 ms
89,752 KB
testcase_38 WA -
testcase_39 AC 165 ms
90,040 KB
testcase_40 AC 170 ms
90,284 KB
testcase_41 WA -
testcase_42 AC 162 ms
89,960 KB
testcase_43 AC 172 ms
90,248 KB
testcase_44 AC 172 ms
90,836 KB
testcase_45 AC 174 ms
90,136 KB
testcase_46 AC 175 ms
90,044 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 173 ms
90,252 KB
testcase_50 AC 177 ms
89,928 KB
testcase_51 AC 180 ms
90,476 KB
testcase_52 AC 172 ms
90,444 KB
testcase_53 WA -
testcase_54 AC 130 ms
89,316 KB
testcase_55 AC 128 ms
89,292 KB
testcase_56 AC 131 ms
89,488 KB
testcase_57 AC 130 ms
89,476 KB
testcase_58 AC 132 ms
89,288 KB
testcase_59 AC 128 ms
89,064 KB
testcase_60 WA -
testcase_61 AC 128 ms
89,464 KB
testcase_62 AC 130 ms
89,508 KB
testcase_63 AC 129 ms
89,596 KB
testcase_64 AC 130 ms
89,464 KB
testcase_65 AC 132 ms
89,416 KB
testcase_66 AC 131 ms
89,252 KB
testcase_67 AC 132 ms
89,576 KB
testcase_68 AC 133 ms
89,048 KB
testcase_69 AC 135 ms
89,324 KB
testcase_70 AC 132 ms
89,700 KB
testcase_71 AC 133 ms
89,316 KB
testcase_72 AC 133 ms
89,360 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