結果

問題 No.2070 Icosahedron
ユーザー dn6049949dn6049949
提出日時 2022-09-16 21:33:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 87,320 KB
実行使用メモリ 71,984 KB
最終ジャッジ日時 2023-08-23 14:29:52
合計ジャッジ時間 2,038 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
71,684 KB
testcase_01 AC 96 ms
71,700 KB
testcase_02 AC 92 ms
71,460 KB
testcase_03 AC 90 ms
71,624 KB
testcase_04 AC 91 ms
71,704 KB
testcase_05 AC 93 ms
71,656 KB
testcase_06 AC 90 ms
71,908 KB
testcase_07 AC 91 ms
71,688 KB
testcase_08 AC 87 ms
71,760 KB
testcase_09 AC 90 ms
71,984 KB
testcase_10 AC 92 ms
71,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def I(): return int(sys.stdin.readline())
def IR(n):
    return [I() for _ in range(n)]
def LIR(n):
    return [LI() for _ in range(n)]

sys.setrecursionlimit(1000000)
mod = 1000000007

def main():
    n = I()
    print(n**3*2.18169499062491237350)
    return


if __name__ == "__main__":
    main()
0