結果

問題 No.1551 誕生日の三角形
ユーザー bluemeganebluemegane
提出日時 2021-06-18 22:30:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 1,000 ms
コード長 226 bytes
コンパイル時間 3,979 ms
コンパイル使用メモリ 108,064 KB
実行使用メモリ 29,064 KB
最終ジャッジ日時 2024-06-22 20:55:51
合計ジャッジ時間 3,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
22,836 KB
testcase_01 AC 23 ms
24,796 KB
testcase_02 AC 21 ms
24,792 KB
testcase_03 AC 22 ms
24,920 KB
testcase_04 AC 21 ms
25,008 KB
testcase_05 AC 22 ms
24,924 KB
testcase_06 AC 22 ms
24,664 KB
testcase_07 AC 22 ms
24,596 KB
testcase_08 AC 22 ms
26,772 KB
testcase_09 AC 21 ms
24,532 KB
testcase_10 AC 24 ms
29,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        var L = int.Parse(Console.ReadLine().Trim());
        var a = L / 3d;
        Console.WriteLine(Sqrt(3) / 4d * a * a);
    }
}
0