結果

問題 No.1076 寿司打
ユーザー rlangevinrlangevin
提出日時 2024-07-31 08:59:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 75,652 KB
最終ジャッジ日時 2024-07-31 08:59:03
合計ジャッジ時間 2,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
75,120 KB
testcase_01 AC 198 ms
75,416 KB
testcase_02 AC 42 ms
73,700 KB
testcase_03 AC 194 ms
75,168 KB
testcase_04 AC 195 ms
75,204 KB
testcase_05 AC 50 ms
75,492 KB
testcase_06 AC 51 ms
75,156 KB
testcase_07 AC 49 ms
75,560 KB
testcase_08 AC 48 ms
75,136 KB
testcase_09 AC 197 ms
75,652 KB
testcase_10 AC 47 ms
75,288 KB
testcase_11 AC 47 ms
75,184 KB
testcase_12 AC 194 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = float(input())
ans = 0
now = p
for i in range(10**6):
    ans += (i + 1) * now * (1 - p)
    now *= p
print(ans)
0