結果

問題 No.53 悪の漸化式
ユーザー xuzijian629
提出日時 2018-10-31 13:52:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 327 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 193,408 KB
最終ジャッジ日時 2025-01-06 15:12:06
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 << pow(3.0 / 4.0, n) * 4 << endl;
}
0