結果

問題 No.1305 Speak of the Devil
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-12-02 16:36:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-13 10:30:57
合計ジャッジ時間 18,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 592 ms
10,752 KB
testcase_13 AC 589 ms
10,752 KB
testcase_14 AC 592 ms
10,624 KB
testcase_15 AC 579 ms
10,880 KB
testcase_16 AC 585 ms
10,496 KB
testcase_17 AC 578 ms
10,624 KB
testcase_18 AC 573 ms
10,752 KB
testcase_19 AC 586 ms
10,752 KB
testcase_20 AC 590 ms
10,496 KB
testcase_21 AC 595 ms
10,624 KB
testcase_22 AC 583 ms
10,624 KB
testcase_23 AC 585 ms
10,624 KB
testcase_24 AC 584 ms
10,624 KB
testcase_25 AC 585 ms
10,752 KB
testcase_26 AC 581 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q = map(int, input().split())
ans = 0
for i in range(1, 1000000):
    ans += (pow((p - 1) / p, i - 1) * 1 / p) * i
print(min(ans, q))
0