結果
問題 | No.53 悪の漸化式 |
ユーザー |
|
提出日時 | 2022-04-03 12:01:33 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 267 bytes |
コンパイル時間 | 3,878 ms |
コンパイル使用メモリ | 250,252 KB |
最終ジャッジ日時 | 2025-01-28 14:44:59 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
#include<bits/stdc++.h>using namespace std;#include<atcoder/all>using namespace atcoder;using ll = long long;int n;void solve(){printf("%.20lf\n",4.0*pow(3.0/4.0,n));}signed main(){cin.tie(nullptr);ios::sync_with_stdio(false);cin >> n;solve();}