結果
| 問題 | No.903 太郎の確率 | 
| コンテスト | |
| ユーザー |  namacha_411 | 
| 提出日時 | 2019-10-31 01:01:12 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 266 bytes | 
| コンパイル時間 | 2,285 ms | 
| コンパイル使用メモリ | 191,540 KB | 
| 最終ジャッジ日時 | 2025-01-08 02:08:59 | 
| ジャッジサーバーID (参考情報) | judge1 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 5 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;
typedef long double ld;
#define rep(i,n) for(int i = 0; i < (n); i++)
#define all(x) x.begin(),x.end()
#define DEBUG
int main()
{
	double d;
	cin >> d;
	cout << 1/d << endl;
	return 0;
}
            
            
            
        