結果

問題 No.2070 Icosahedron
ユーザー lloyzlloyz
提出日時 2022-09-16 21:22:59
言語 Python3
(3.10.1 + numpy 1.22.3 + scipy 1.8.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 77 bytes
コンパイル時間 68 ms
使用メモリ 7,780 KB
最終ジャッジ日時 2023-01-11 05:51:28
合計ジャッジ時間 1,301 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 15 ms
7,556 KB
testcase_01 AC 15 ms
7,652 KB
testcase_02 AC 15 ms
7,568 KB
testcase_03 AC 14 ms
7,732 KB
testcase_04 AC 15 ms
7,780 KB
testcase_05 AC 14 ms
7,676 KB
testcase_06 AC 15 ms
7,664 KB
testcase_07 AC 15 ms
7,620 KB
testcase_08 AC 14 ms
7,660 KB
testcase_09 AC 15 ms
7,728 KB
testcase_10 AC 14 ms
7,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

n = int(input())
print(5 * (3 + sqrt(5)) * n**3 / 12)
0