結果
問題 |
No.53 悪の漸化式
|
ユーザー |
![]() |
提出日時 | 2019-01-20 18:10:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 288 bytes |
コンパイル時間 | 936 ms |
コンパイル使用メモリ | 109,320 KB |
最終ジャッジ日時 | 2025-01-06 20:31:34 |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<functional> #include<set> #include<map> #include<string> #include<iomanip> #include<cmath> int main() { double N; std::cin >> N; std::cout << std::setprecision(15) << 4 * std::pow(0.75, N) << std::endl; }