結果

問題 No.388 階段 (1)
ユーザー AtriaAtria
提出日時 2019-11-10 14:18:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 826 ms
コンパイル使用メモリ 69,884 KB
実行使用メモリ 23,976 KB
最終ジャッジ日時 2023-10-13 07:45:33
合計ジャッジ時間 2,759 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
21,752 KB
testcase_01 AC 60 ms
21,808 KB
testcase_02 AC 60 ms
19,768 KB
testcase_03 AC 60 ms
23,976 KB
testcase_04 AC 60 ms
21,892 KB
testcase_05 AC 60 ms
23,888 KB
testcase_06 AC 59 ms
19,892 KB
testcase_07 AC 60 ms
21,756 KB
testcase_08 AC 60 ms
19,884 KB
testcase_09 AC 60 ms
21,836 KB
testcase_10 AC 60 ms
23,924 KB
testcase_11 AC 60 ms
21,740 KB
testcase_12 AC 60 ms
23,888 KB
testcase_13 AC 60 ms
21,932 KB
testcase_14 AC 62 ms
19,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

namespace CP
{
    class Atria
    {
        static void Main(string[] args)
        {
            long[] s = ReadLine().Split(' ').Select(long.Parse).ToArray();
            WriteLine(
                (s[0] / s[1]) + 1
                );
        }

    }
}
0