結果

問題 No.2070 Icosahedron
ユーザー nephrologistnephrologist
提出日時 2022-09-16 22:06:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 59 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 87,380 KB
実行使用メモリ 71,968 KB
最終ジャッジ日時 2023-08-23 15:40:12
合計ジャッジ時間 1,815 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,828 KB
testcase_01 AC 69 ms
71,532 KB
testcase_02 AC 68 ms
71,752 KB
testcase_03 AC 70 ms
71,896 KB
testcase_04 AC 73 ms
71,968 KB
testcase_05 AC 68 ms
71,456 KB
testcase_06 AC 69 ms
71,876 KB
testcase_07 AC 67 ms
71,832 KB
testcase_08 AC 69 ms
71,748 KB
testcase_09 AC 69 ms
71,540 KB
testcase_10 AC 69 ms
71,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

ans = n**3 *(15+5*pow(5,0.5))/12
print(ans)
0