結果
問題 | No.2070 Icosahedron |
ユーザー | tnakao0123 |
提出日時 | 2022-09-18 01:13:36 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 374 bytes |
コンパイル時間 | 643 ms |
コンパイル使用メモリ | 56,396 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-22 01:04:20 |
合計ジャッジ時間 | 1,252 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 |
ソースコード
/* -*- coding: utf-8 -*- * * 2070.cc: No.2070 Icosahedron - yukicoder */ #include<cstdio> #include<cmath> #include<algorithm> using namespace std; /* constant */ /* typedef */ /* global variables */ /* subroutines */ /* main */ int main() { int n; scanf("%d", &n); double v = (15.0 + 5 * sqrt(5)) / 12; printf("%.10lf\n", v * n * n * n); return 0; }