結果
| 問題 | No.567 コンプリート | 
| コンテスト | |
| ユーザー |  xuzijian629 | 
| 提出日時 | 2018-10-31 17:06:24 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 30 ms / 2,000 ms | 
| コード長 | 428 bytes | 
| コンパイル時間 | 1,543 ms | 
| コンパイル使用メモリ | 194,264 KB | 
| 最終ジャッジ日時 | 2025-01-06 15:14:17 | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 12 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using vi = vector<i64>;
using vvi = vector<vi>;
int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    cout.setf(ios::fixed);
    cout.precision(10);
    int n;
    cin >> n;
    cout << 1 - 6 * pow(1.0 / 6, n) + 15 * pow(2.0 / 6, n) - 20 * pow(3.0 / 6, n) + 15 * pow(4.0 / 6, n) - 6 * pow(5.0 / 6, n) + 1e-12 << endl;
}
            
            
            
        