結果

問題 No.2070 Icosahedron
ユーザー hir355hir355
提出日時 2022-09-16 23:17:22
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 55 bytes
コンパイル時間 253 ms
使用メモリ 76,380 KB
最終ジャッジ日時 2023-01-11 08:29:04
合計ジャッジ時間 2,019 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 73 ms
76,060 KB
testcase_01 AC 71 ms
76,244 KB
testcase_02 AC 71 ms
76,372 KB
testcase_03 AC 72 ms
76,380 KB
testcase_04 AC 71 ms
76,224 KB
testcase_05 AC 71 ms
76,188 KB
testcase_06 AC 73 ms
76,216 KB
testcase_07 AC 71 ms
76,212 KB
testcase_08 AC 72 ms
76,152 KB
testcase_09 AC 72 ms
76,220 KB
testcase_10 AC 72 ms
76,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print(5 * (3 + 5 ** .5) * n ** 3 / 12)
0