結果

問題 No.388 階段 (1)
ユーザー laneguelanegue
提出日時 2020-03-31 17:32:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 1,433 ms
コンパイル使用メモリ 64,860 KB
実行使用メモリ 22,860 KB
最終ジャッジ日時 2023-09-07 02:39:04
合計ジャッジ時間 3,275 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
20,700 KB
testcase_01 AC 58 ms
22,632 KB
testcase_02 AC 57 ms
20,720 KB
testcase_03 AC 57 ms
20,808 KB
testcase_04 AC 57 ms
20,780 KB
testcase_05 AC 57 ms
20,780 KB
testcase_06 AC 56 ms
22,692 KB
testcase_07 AC 58 ms
22,860 KB
testcase_08 AC 57 ms
20,656 KB
testcase_09 AC 56 ms
18,724 KB
testcase_10 AC 57 ms
20,620 KB
testcase_11 AC 57 ms
20,732 KB
testcase_12 AC 58 ms
22,844 KB
testcase_13 AC 57 ms
20,628 KB
testcase_14 AC 57 ms
20,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
public class Program
{
    static void Main()
    {
        string[] inputs = Console.ReadLine().Split(' ');
        int s = int.Parse(inputs[0]);
        int f = int.Parse(inputs[1]);
        Console.WriteLine(s / f + 1);
    }
}
0