結果

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

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 75 ms
75,908 KB
testcase_01 AC 76 ms
76,044 KB
testcase_02 AC 76 ms
75,876 KB
testcase_03 AC 77 ms
75,804 KB
testcase_04 AC 75 ms
75,980 KB
testcase_05 AC 77 ms
75,888 KB
testcase_06 AC 75 ms
75,916 KB
testcase_07 AC 76 ms
75,652 KB
testcase_08 AC 76 ms
75,960 KB
testcase_09 AC 76 ms
75,696 KB
testcase_10 AC 76 ms
75,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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