結果

問題 No.2070 Icosahedron
ユーザー md emon6767
提出日時 2022-09-16 21:44:53
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 28,928 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-21 18:52:49
合計ジャッジ時間 870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<math.h>
int main()
{
    int  n;
      long double s;
    scanf("%Ld",&n);
    s=(5*pow(n,3)*(3+sqrt(5)))/12;
    // printf("%")
    printf("%.20Lf\n",s);
}
0