結果

問題 No.480 合計
ユーザー withMakaroni CommonwithMakaroni Common
提出日時 2021-04-05 22:22:00
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 111,620 KB
実行使用メモリ 28,484 KB
最終ジャッジ日時 2025-01-01 20:17:20
合計ジャッジ時間 1,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
26,436 KB
testcase_01 AC 20 ms
24,260 KB
testcase_02 AC 20 ms
24,168 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 19 ms
26,208 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 21 ms
24,036 KB
testcase_11 AC 19 ms
24,404 KB
testcase_12 AC 20 ms
24,040 KB
testcase_13 AC 19 ms
24,504 KB
testcase_14 AC 21 ms
28,484 KB
testcase_15 AC 19 ms
24,240 KB
testcase_16 AC 19 ms
26,068 KB
testcase_17 WA -
testcase_18 AC 19 ms
24,420 KB
testcase_19 WA -
testcase_20 AC 19 ms
24,420 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