結果

問題 No.1033 乱数サイ
ユーザー うわばみうわばみ
提出日時 2020-04-29 13:10:23
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 61,272 KB
実行使用メモリ 25,940 KB
最終ジャッジ日時 2023-08-18 19:30:35
合計ジャッジ時間 3,289 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
23,676 KB
testcase_01 AC 57 ms
23,784 KB
testcase_02 AC 58 ms
25,656 KB
testcase_03 AC 56 ms
23,764 KB
testcase_04 AC 57 ms
25,940 KB
testcase_05 AC 57 ms
25,808 KB
testcase_06 AC 56 ms
23,772 KB
testcase_07 AC 56 ms
23,808 KB
testcase_08 AC 55 ms
25,660 KB
testcase_09 AC 55 ms
23,808 KB
testcase_10 AC 55 ms
23,848 KB
testcase_11 AC 57 ms
25,660 KB
testcase_12 AC 56 ms
23,796 KB
testcase_13 AC 57 ms
23,688 KB
testcase_14 AC 56 ms
23,748 KB
testcase_15 AC 57 ms
23,844 KB
testcase_16 AC 56 ms
25,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Linq;

class Program
{
    static void Main()
    {
        int n = Console.ReadLine().Split().Select(a => int.Parse(a)).ToArray()[0];
        Console.WriteLine((n / 2f).ToString("F1"));
    }
}
0