結果
問題 | No.2070 Icosahedron |
ユーザー |
|
提出日時 | 2024-03-20 10:47:09 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 298 bytes |
コンパイル時間 | 4,196 ms |
コンパイル使用メモリ | 251,560 KB |
最終ジャッジ日時 | 2025-02-20 08:02:08 |
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 |
ソースコード
#include <bits/stdc++.h>#include <atcoder/all>using namespace std;using namespace atcoder;using ll = long long;ll N;int main() {cin >> N;long double ans = (long double)N * N * N * (long double)(2.18169499062491237350);cout << fixed << setprecision(20) << ans << endl;return 0;}