結果
| 問題 |
No.2070 Icosahedron
|
| コンテスト | |
| ユーザー |
FromBooska
|
| 提出日時 | 2023-06-09 20:57:48 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 37 ms / 2,000 ms |
| コード長 | 205 bytes |
| コンパイル時間 | 249 ms |
| コンパイル使用メモリ | 82,100 KB |
| 実行使用メモリ | 54,104 KB |
| 最終ジャッジ日時 | 2025-01-02 01:36:30 |
| 合計ジャッジ時間 | 1,252 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
ソースコード
# 辺の長さがaの正20面体の体積V # https://www.shinko-keirin.co.jp/keirinkan/kosu/mathematics/kirinuki/kirinuki23.html from math import sqrt N = int(input()) V = 5*(3+sqrt(5))*(N**3)/12 print(V)
FromBooska