結果

問題 No.1033 乱数サイ
ユーザー bluemeganebluemegane
提出日時 2020-04-25 07:18:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 907 ms
コンパイル使用メモリ 63,304 KB
実行使用メモリ 24,800 KB
最終ジャッジ日時 2023-08-06 06:07:30
合計ジャッジ時間 3,001 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
22,620 KB
testcase_01 AC 62 ms
24,648 KB
testcase_02 AC 63 ms
24,772 KB
testcase_03 AC 62 ms
22,592 KB
testcase_04 AC 62 ms
24,696 KB
testcase_05 AC 62 ms
24,684 KB
testcase_06 AC 63 ms
22,656 KB
testcase_07 AC 61 ms
22,592 KB
testcase_08 AC 62 ms
22,624 KB
testcase_09 AC 63 ms
22,788 KB
testcase_10 AC 61 ms
24,756 KB
testcase_11 AC 62 ms
24,768 KB
testcase_12 AC 61 ms
22,784 KB
testcase_13 AC 62 ms
22,780 KB
testcase_14 AC 62 ms
22,556 KB
testcase_15 AC 62 ms
24,800 KB
testcase_16 AC 61 ms
22,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        Console.WriteLine(n/2d);
    }
}
0