結果

問題 No.2070 Icosahedron
ユーザー nephrologistnephrologist
提出日時 2022-09-16 22:06:32
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 59 bytes
コンパイル時間 260 ms
使用メモリ 76,396 KB
最終ジャッジ日時 2023-01-11 07:08:06
合計ジャッジ時間 2,086 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 74 ms
76,264 KB
testcase_01 AC 74 ms
76,200 KB
testcase_02 AC 75 ms
75,996 KB
testcase_03 AC 74 ms
76,348 KB
testcase_04 AC 76 ms
76,120 KB
testcase_05 AC 75 ms
75,988 KB
testcase_06 AC 77 ms
76,396 KB
testcase_07 AC 74 ms
76,048 KB
testcase_08 AC 76 ms
76,212 KB
testcase_09 AC 73 ms
76,096 KB
testcase_10 AC 75 ms
76,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

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