結果

問題 No.1033 乱数サイ
ユーザー kkron4221kkron4221
提出日時 2020-05-01 10:14:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 234 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-23 12:44:41
合計ジャッジ時間 1,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 27 ms
10,368 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 AC 25 ms
10,368 KB
testcase_08 AC 26 ms
10,368 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def roop_n(n):
    ans = 0
    if n == 0:
        pass
    else:
        ans = n + roop_n(n - 1)
    return ans


n, k = map(int, input().split())

denominator = (n + 1) * k

numerator = k * (roop_n(n))

print(numerator / denominator)
0