結果

問題 No.480 合計
ユーザー withMakaroni CommonwithMakaroni Common
提出日時 2021-04-05 22:22:00
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 107,532 KB
実行使用メモリ 27,704 KB
最終ジャッジ日時 2024-06-10 09:55:32
合計ジャッジ時間 1,799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
23,624 KB
testcase_01 AC 20 ms
23,748 KB
testcase_02 AC 20 ms
23,384 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 21 ms
26,048 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 20 ms
25,936 KB
testcase_11 AC 19 ms
23,772 KB
testcase_12 AC 20 ms
21,428 KB
testcase_13 AC 19 ms
23,636 KB
testcase_14 AC 20 ms
23,388 KB
testcase_15 AC 20 ms
23,648 KB
testcase_16 AC 20 ms
25,540 KB
testcase_17 WA -
testcase_18 AC 19 ms
23,860 KB
testcase_19 WA -
testcase_20 AC 19 ms
25,544 KB
testcase_21 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;


class Yukicorder
{
    public static void Main()
    {
        var N = Console.ReadLine();
        int NN = int.Parse(N);

        Console.WriteLine((NN + 1) * (NN / 2));
    }
}
0