結果

問題 No.2070 Icosahedron
ユーザー FromBooskaFromBooska
提出日時 2023-06-09 20:57:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 53,480 KB
最終ジャッジ日時 2024-06-10 12:32:48
合計ジャッジ時間 1,269 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,392 KB
testcase_01 AC 34 ms
52,412 KB
testcase_02 AC 33 ms
52,384 KB
testcase_03 AC 33 ms
52,532 KB
testcase_04 AC 35 ms
53,480 KB
testcase_05 AC 36 ms
51,808 KB
testcase_06 AC 32 ms
52,320 KB
testcase_07 AC 34 ms
52,468 KB
testcase_08 AC 32 ms
52,888 KB
testcase_09 AC 32 ms
52,380 KB
testcase_10 AC 31 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 辺の長さがaの正20面体の体積V
# https://www.shinko-keirin.co.jp/keirinkan/kosu/mathematics/kirinuki/kirinuki23.html

from math import sqrt
N = int(input())
V = 5*(3+sqrt(5))*(N**3)/12
print(V)
0