結果

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

ソースコード

diff #

#include <iostream>
#include <iomanip>
using namespace std;
int main(){
    long double n;cin>>n;
    cout << fixed << setprecision(10) << n*n*n*2.1816949906249123735 << endl;
}
0