結果

問題 No.276 連続する整数の和(1)
ユーザー bluemeganebluemegane
提出日時 2018-10-01 19:51:22
言語 C#
(csc 3.9.0)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 185 bytes
コンパイル時間 1,908 ms
使用メモリ 22,876 KB
最終ジャッジ日時 2022-12-05 12:10:06
合計ジャッジ時間 3,351 ms
ジャッジサーバーID
(参考情報)
judge15 / judge16
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 54 ms
22,876 KB
testcase_01 AC 52 ms
22,784 KB
testcase_02 AC 52 ms
20,836 KB
testcase_03 AC 53 ms
20,800 KB
testcase_04 AC 53 ms
18,676 KB
testcase_05 AC 53 ms
20,780 KB
testcase_06 AC 52 ms
20,728 KB
testcase_07 AC 52 ms
20,692 KB
testcase_08 AC 52 ms
20,844 KB
testcase_09 AC 51 ms
22,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        Console.WriteLine(n % 2 == 0 ? n / 2 : n);
    }
}
0