結果
| 問題 | No.2070 Icosahedron |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-16 21:33:40 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 174 bytes |
| 記録 | |
| コンパイル時間 | 1,084 ms |
| コンパイル使用メモリ | 36,820 KB |
| 実行使用メモリ | 9,400 KB |
| 最終ジャッジ日時 | 2026-07-23 05:37:52 |
| 合計ジャッジ時間 | 2,782 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 9 |
ソースコード
#include<stdio.h>
#include<math.h>
int main()
{
int n;
float s;
scanf("%d",&n);
s=(5*pow(n,3)*(3+sqrt(5)))/12;
// printf("%")
printf("%.18f\n",s);
}