結果

問題 No.1076 寿司打
ユーザー ああいいああいい
提出日時 2022-02-23 14:12:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 69 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 87,300 KB
実行使用メモリ 71,516 KB
最終ジャッジ日時 2023-09-14 06:22:03
合計ジャッジ時間 2,319 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,196 KB
testcase_01 AC 69 ms
71,460 KB
testcase_02 AC 67 ms
71,316 KB
testcase_03 AC 69 ms
71,168 KB
testcase_04 AC 69 ms
70,972 KB
testcase_05 AC 70 ms
71,516 KB
testcase_06 AC 66 ms
71,172 KB
testcase_07 AC 64 ms
71,376 KB
testcase_08 AC 65 ms
71,228 KB
testcase_09 AC 64 ms
71,092 KB
testcase_10 AC 64 ms
71,300 KB
testcase_11 AC 63 ms
71,340 KB
testcase_12 AC 63 ms
70,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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