結果

問題 No.1076 寿司打
ユーザー uni_pythonuni_python
提出日時 2020-06-15 23:18:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 53,876 KB
最終ジャッジ日時 2024-07-03 11:35:30
合計ジャッジ時間 1,280 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,820 KB
testcase_01 AC 36 ms
52,748 KB
testcase_02 AC 37 ms
53,876 KB
testcase_03 AC 40 ms
53,364 KB
testcase_04 AC 36 ms
52,028 KB
testcase_05 AC 36 ms
52,396 KB
testcase_06 AC 36 ms
52,672 KB
testcase_07 AC 37 ms
53,024 KB
testcase_08 AC 37 ms
52,340 KB
testcase_09 AC 37 ms
52,268 KB
testcase_10 AC 37 ms
52,928 KB
testcase_11 AC 36 ms
52,984 KB
testcase_12 AC 38 ms
51,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    p=float(input())
    if p==0:
        print(0)
    else:
        print(1/(1-p)-1)


main()

        
0