結果
| 問題 | 
                            No.1076 寿司打
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2023-06-18 23:55:34 | 
| 言語 | C++23  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 302 bytes | 
| コンパイル時間 | 3,422 ms | 
| コンパイル使用メモリ | 243,484 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-06-26 10:20:17 | 
| 合計ジャッジ時間 | 3,982 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "debug.hpp"
#else
#define debug(...) 1
#endif
int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    double p;
    cin >> p;
    double ans = 1 / (1 - p) - 1;
    cout << fixed << setprecision(15) << ans << '\n';
}