結果
問題 | No.2070 Icosahedron |
ユーザー |
|
提出日時 | 2022-09-16 21:33:40 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 174 bytes |
コンパイル時間 | 2,025 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-21 18:29:08 |
合計ジャッジ時間 | 2,493 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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); }