結果

問題 No.480 合計
ユーザー withMakaroni 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13 WA * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
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