結果

問題 No.2070 Icosahedron
ユーザー roarisroaris
提出日時 2022-09-16 21:21:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 87,212 KB
実行使用メモリ 72,176 KB
最終ジャッジ日時 2023-08-23 14:20:27
合計ジャッジ時間 2,100 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
71,808 KB
testcase_01 AC 93 ms
72,084 KB
testcase_02 AC 98 ms
71,960 KB
testcase_03 AC 93 ms
71,844 KB
testcase_04 AC 91 ms
71,920 KB
testcase_05 AC 91 ms
71,852 KB
testcase_06 AC 93 ms
71,984 KB
testcase_07 AC 93 ms
71,952 KB
testcase_08 AC 94 ms
71,672 KB
testcase_09 AC 93 ms
71,956 KB
testcase_10 AC 92 ms
72,176 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