結果

問題 No.2070 Icosahedron
ユーザー bluemeganebluemegane
提出日時 2022-09-16 22:13:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 63,140 KB
実行使用メモリ 24,692 KB
最終ジャッジ日時 2023-08-23 15:49:47
合計ジャッジ時間 3,487 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
22,584 KB
testcase_01 AC 62 ms
24,692 KB
testcase_02 AC 61 ms
22,540 KB
testcase_03 AC 63 ms
24,652 KB
testcase_04 AC 61 ms
22,600 KB
testcase_05 AC 62 ms
22,760 KB
testcase_06 AC 62 ms
24,568 KB
testcase_07 AC 62 ms
24,584 KB
testcase_08 AC 62 ms
22,496 KB
testcase_09 AC 63 ms
22,644 KB
testcase_10 AC 61 ms
22,628 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