結果

問題 No.2070 Icosahedron
ユーザー ShirotsumeShirotsume
提出日時 2022-09-16 23:30:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 87,580 KB
実行使用メモリ 71,828 KB
最終ジャッジ日時 2023-08-23 16:46:52
合計ジャッジ時間 1,819 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,828 KB
testcase_01 AC 70 ms
71,620 KB
testcase_02 AC 69 ms
71,556 KB
testcase_03 AC 70 ms
71,676 KB
testcase_04 AC 74 ms
71,652 KB
testcase_05 AC 68 ms
71,792 KB
testcase_06 AC 68 ms
71,720 KB
testcase_07 AC 69 ms
71,792 KB
testcase_08 AC 68 ms
71,608 KB
testcase_09 AC 69 ms
71,556 KB
testcase_10 AC 70 ms
71,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2**63-1
mod = 998244353
n = ii()

p = (15 + 5 ** (1.5)) / 12

print(p * n ** 3)
0