結果

問題 No.2070 Icosahedron
ユーザー kou_kkkkou_kkk
提出日時 2023-09-20 11:16:51
言語 Nim
(2.2.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 3,821 ms
コンパイル使用メモリ 65,912 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 06:43:29
合計ジャッジ時間 4,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

import math, strutils

let n = parseFloat readLine stdin

# 5(3+√5)/12*n^3

echo 5 * (3 + 5.0.sqrt) / 12 * n.pow 3
0