結果

問題 No.1033 乱数サイ
ユーザー EvolMaxEvolMax
提出日時 2020-06-03 16:20:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 174 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-11-25 02:53:24
合計ジャッジ時間 16,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,444 KB
testcase_01 AC 29 ms
20,864 KB
testcase_02 AC 29 ms
17,440 KB
testcase_03 WA -
testcase_04 AC 29 ms
17,572 KB
testcase_05 WA -
testcase_06 AC 27 ms
17,444 KB
testcase_07 AC 30 ms
21,120 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 43 ms
10,496 KB
testcase_11 WA -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)

sum = round(sum)
sum = float(sum)

print(sum)
0