結果

問題 No.2070 Icosahedron
ユーザー FromBooskaFromBooska
提出日時 2023-10-05 15:53:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 87,756 KB
実行使用メモリ 72,100 KB
最終ジャッジ日時 2023-10-05 15:53:12
合計ジャッジ時間 2,034 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,812 KB
testcase_01 AC 68 ms
71,676 KB
testcase_02 AC 72 ms
72,064 KB
testcase_03 AC 69 ms
71,840 KB
testcase_04 AC 68 ms
71,992 KB
testcase_05 AC 67 ms
72,100 KB
testcase_06 AC 68 ms
71,852 KB
testcase_07 AC 94 ms
71,784 KB
testcase_08 AC 67 ms
71,880 KB
testcase_09 AC 66 ms
71,584 KB
testcase_10 AC 67 ms
71,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://www.shinko-keirin.co.jp/keirinkan/kosu/mathematics/kirinuki/kirinuki23.html

N = int(input())
V = N**3*5*(3+5**0.5)/12
print(V)
0