結果

問題 No.1033 乱数サイ
ユーザー EvolMaxEvolMax
提出日時 2020-06-03 16:25:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 261 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-05-03 22:09:10
合計ジャッジ時間 4,539 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,384 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 28 ms
11,008 KB
testcase_04 AC 28 ms
11,008 KB
testcase_05 AC 30 ms
11,136 KB
testcase_06 AC 29 ms
11,008 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
11,008 KB
testcase_09 AC 36 ms
11,008 KB
testcase_10 AC 39 ms
11,008 KB
testcase_11 AC 415 ms
11,008 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal, ROUND_HALF_UP

N,K = map(int,input().split())

number = (N+1)*K


sum = 0
for i in range(N+1):
  for j in range(K):
    sum += float(i/number)

a = Decimal(str(sum))

b = a.quantize(Decimal('0.1'), rounding=ROUND_HALF_UP)

print(b)
0