結果

問題 No.1738 What's in the box?
ユーザー MasKoaTSMasKoaTS
提出日時 2021-11-12 21:49:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 755 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 90,424 KB
最終ジャッジ日時 2024-05-04 08:16:10
合計ジャッジ時間 13,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
86,400 KB
testcase_01 AC 128 ms
86,656 KB
testcase_02 AC 123 ms
86,912 KB
testcase_03 AC 205 ms
90,112 KB
testcase_04 AC 198 ms
89,856 KB
testcase_05 AC 209 ms
89,728 KB
testcase_06 AC 200 ms
89,856 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 200 ms
89,984 KB
testcase_10 WA -
testcase_11 AC 188 ms
89,728 KB
testcase_12 AC 203 ms
89,728 KB
testcase_13 AC 121 ms
86,656 KB
testcase_14 WA -
testcase_15 AC 122 ms
86,784 KB
testcase_16 AC 144 ms
86,656 KB
testcase_17 AC 128 ms
86,728 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 131 ms
86,912 KB
testcase_21 AC 131 ms
88,704 KB
testcase_22 AC 136 ms
86,784 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 174 ms
89,640 KB
testcase_34 AC 189 ms
89,856 KB
testcase_35 AC 161 ms
89,088 KB
testcase_36 AC 184 ms
89,984 KB
testcase_37 AC 167 ms
89,472 KB
testcase_38 WA -
testcase_39 AC 192 ms
89,808 KB
testcase_40 AC 223 ms
89,728 KB
testcase_41 WA -
testcase_42 AC 206 ms
89,600 KB
testcase_43 AC 193 ms
90,112 KB
testcase_44 AC 194 ms
89,600 KB
testcase_45 AC 177 ms
89,728 KB
testcase_46 AC 195 ms
89,856 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 181 ms
89,860 KB
testcase_50 AC 192 ms
89,984 KB
testcase_51 AC 184 ms
90,112 KB
testcase_52 AC 201 ms
89,728 KB
testcase_53 WA -
testcase_54 AC 129 ms
86,400 KB
testcase_55 AC 116 ms
86,912 KB
testcase_56 AC 139 ms
88,832 KB
testcase_57 AC 118 ms
86,852 KB
testcase_58 AC 130 ms
86,784 KB
testcase_59 AC 116 ms
86,784 KB
testcase_60 WA -
testcase_61 AC 118 ms
86,400 KB
testcase_62 AC 126 ms
86,784 KB
testcase_63 AC 114 ms
86,872 KB
testcase_64 AC 128 ms
86,912 KB
testcase_65 AC 118 ms
86,784 KB
testcase_66 AC 129 ms
86,784 KB
testcase_67 AC 119 ms
86,400 KB
testcase_68 AC 129 ms
86,400 KB
testcase_69 AC 116 ms
86,784 KB
testcase_70 AC 128 ms
86,912 KB
testcase_71 AC 117 ms
86,912 KB
testcase_72 AC 128 ms
86,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from copy import deepcopy as dcopy
import math
import sys
sys.setrecursionlimit(10**6)
def input():
    return sys.stdin.readline().rstrip()
def getN():
	return int(sys.stdin.readline())
def getNs():
	return map(dec,sys.stdin.readline().split())
def getList():
	return list(map(dec,sys.stdin.readline().split()))
def strinps(n):
	return [sys.stdin.readline().rstrip() for _ in range(n)]
pi = 3.141592653589793
mod = 10**9+7
MOD = 998244353
INF = math.inf
dx = [1,0,-1,0];	dy = [0,1,0,-1]


"""
Main Code
"""

n,m = getNs()
w = getList()
x = sum(w) / m
ans = [0]*int(n)
for i in range(int(n)):
	ans[i] = int(w[i] / x)
print(*ans)
0