結果
| 問題 |
No.53 悪の漸化式
|
| コンテスト | |
| ユーザー |
古寺いろは
|
| 提出日時 | 2015-04-13 23:37:45 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 184 bytes |
| コンパイル時間 | 1,086 ms |
| コンパイル使用メモリ | 157,264 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-04 14:18:46 |
| 合計ジャッジ時間 | 1,716 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
int main(){
int N;
cin >> N;
double ans = 4;
for (int i = 0; i < N; i++)
{
ans *= 0.75;
}
printf("%.14f\n", ans);
cin >> ans;
}
古寺いろは