結果
問題 | No.2070 Icosahedron |
ユーザー |
![]() |
提出日時 | 2022-09-16 21:33:43 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 527 bytes |
コンパイル時間 | 468 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 56,184 KB |
最終ジャッジ日時 | 2024-12-21 18:29:10 |
合計ジャッジ時間 | 1,408 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 |
ソースコード
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()