結果

問題 No.2070 Icosahedron
ユーザー 中井康介
提出日時 2022-09-16 21:39:18
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 28,672 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-21 18:40:15
合計ジャッジ時間 717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<math.h>

int main(void)
{
	int n;
	scanf("%d",&n);
	printf("%llf\n",((15+5*sqrt(5))/12)*n*n*n);
	return 0;
}
0