結果

問題 No.2070 Icosahedron
ユーザー 👑 kakel-sankakel-san
提出日時 2022-09-16 21:44:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 1,679 ms
コンパイル使用メモリ 67,644 KB
実行使用メモリ 24,612 KB
最終ジャッジ日時 2023-08-23 14:44:22
合計ジャッジ時間 3,073 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
22,524 KB
testcase_01 AC 60 ms
22,468 KB
testcase_02 AC 61 ms
22,528 KB
testcase_03 AC 59 ms
22,712 KB
testcase_04 AC 60 ms
22,560 KB
testcase_05 AC 60 ms
22,580 KB
testcase_06 AC 61 ms
24,584 KB
testcase_07 AC 62 ms
22,568 KB
testcase_08 AC 60 ms
22,728 KB
testcase_09 AC 60 ms
22,600 KB
testcase_10 AC 61 ms
24,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(int n) => Enumerable.Repeat(0, n).Select(_ => ReadLine()).ToArray();
    static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var c = 2903.83603252175836913358;
        WriteLine(c / 11 / 11 / 11 * n * n * n);
    }
}
0