結果

問題 No.2070 Icosahedron
ユーザー atjh16atjh16
提出日時 2022-09-20 09:55:05
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 198,628 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-22 03:23:22
合計ジャッジ時間 3,171 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

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

double n;

int main() {
	cin >> n;
	cout << setprecision(30) << n * n * n * (15 + 5 * sqrt(5)) / 12 << endl;
}
0