結果

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

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 69 ms
76,180 KB
testcase_01 AC 76 ms
76,068 KB
testcase_02 AC 78 ms
76,372 KB
testcase_03 AC 68 ms
76,128 KB
testcase_04 AC 70 ms
76,244 KB
testcase_05 AC 70 ms
76,172 KB
testcase_06 AC 69 ms
76,132 KB
testcase_07 AC 68 ms
76,368 KB
testcase_08 AC 70 ms
76,164 KB
testcase_09 AC 70 ms
76,160 KB
testcase_10 AC 70 ms
76,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print((n**3) * 5 * (3+pow(5, 0.5))/12)
0