結果

問題 No.821 Making Integers
ユーザー Tomohiko HasegawaTomohiko Hasegawa
提出日時 2019-04-27 12:25:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 1,232 bytes
コンパイル時間 2,845 ms
コンパイル使用メモリ 105,344 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-11-27 15:28:47
合計ジャッジ時間 2,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
17,408 KB
testcase_01 AC 24 ms
17,792 KB
testcase_02 AC 24 ms
17,536 KB
testcase_03 AC 24 ms
17,792 KB
testcase_04 AC 23 ms
17,664 KB
testcase_05 AC 24 ms
17,664 KB
testcase_06 AC 24 ms
17,664 KB
testcase_07 AC 24 ms
17,664 KB
testcase_08 AC 24 ms
17,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using static System.Console;
using static System.Math;

namespace AtTest.yukicoder
{
    class _821
    {
        static void Main(string[] args)
        {
            Method(args);
        }

        static void Method(string[] args)
        {
            long[] nk = ReadLongs();
            long n = nk[0];
            long k = nk[1];
            long res = n * (n + 1) / 2;
            res -= (n - k) * (n - k + 1) / 2;
            WriteLine(res + 1);
        }

        private static string Read() { return ReadLine(); }
        private static char[] ReadChars() { return Array.ConvertAll(Read().Split(), a => a[0]); }
        private static int ReadInt() { return int.Parse(Read()); }
        private static long ReadLong() { return long.Parse(Read()); }
        private static double ReadDouble() { return double.Parse(Read()); }
        private static int[] ReadInts() { return Array.ConvertAll(Read().Split(), int.Parse); }
        private static long[] ReadLongs() { return Array.ConvertAll(Read().Split(), long.Parse); }
        private static double[] ReadDoubles() { return Array.ConvertAll(Read().Split(), double.Parse); }
    }
}
0