結果

問題 No.2070 Icosahedron
ユーザー bluemeganebluemegane
提出日時 2022-09-16 22:13:03
言語 C#(mono)
(mono 6.12.0.158)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 691 ms
使用メモリ 24,844 KB
最終ジャッジ日時 2023-01-11 07:21:26
合計ジャッジ時間 2,355 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 60 ms
24,676 KB
testcase_01 AC 61 ms
22,772 KB
testcase_02 AC 60 ms
24,836 KB
testcase_03 AC 59 ms
22,876 KB
testcase_04 AC 61 ms
22,840 KB
testcase_05 AC 60 ms
22,684 KB
testcase_06 AC 61 ms
22,832 KB
testcase_07 AC 60 ms
24,844 KB
testcase_08 AC 60 ms
22,784 KB
testcase_09 AC 61 ms
22,772 KB
testcase_10 AC 60 ms
22,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using static System.Math;
using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        var a = 2.18169499062491237350d;
        var n = double.Parse(Console.ReadLine().Trim());
        var ans = n * n * n * a;
        Console.WriteLine(ans);
    }
}
0