結果

問題 No.2070 Icosahedron
ユーザー ayataka5
提出日時 2022-09-16 21:23:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 192,824 KB
最終ジャッジ日時 2025-02-07 06:02:58
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using ld = long double;
const ll mod = 998244353;
const ll INF = (1LL << 60);

int main() {
    int N;
    cin >> N;
    ld V = ld(N) * ld(N) * ld(N) * ld(2.18169499062491237350);
    cout << setprecision(450) << V << endl;
    return 0;
}
0