結果

問題 No.2070 Icosahedron
ユーザー roarisroaris
提出日時 2022-09-16 21:21:33
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 274 ms
使用メモリ 76,572 KB
最終ジャッジ日時 2023-01-11 05:49:20
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 93 ms
76,316 KB
testcase_01 AC 93 ms
76,388 KB
testcase_02 AC 93 ms
76,408 KB
testcase_03 AC 94 ms
76,484 KB
testcase_04 AC 94 ms
76,556 KB
testcase_05 AC 95 ms
76,472 KB
testcase_06 AC 93 ms
76,572 KB
testcase_07 AC 93 ms
76,364 KB
testcase_08 AC 93 ms
76,408 KB
testcase_09 AC 94 ms
76,440 KB
testcase_10 AC 94 ms
76,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
ans = 5*(3+5**0.5)/12*N**3
print(ans)
0