結果

問題 No.46 はじめのn歩
ユーザー しらゆきしらゆき
提出日時 2015-11-17 20:47:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 221 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 105,180 KB
実行使用メモリ 25,784 KB
最終ジャッジ日時 2023-10-11 17:53:27
合計ジャッジ時間 4,939 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
23,844 KB
testcase_01 AC 69 ms
23,852 KB
testcase_02 AC 69 ms
23,772 KB
testcase_03 AC 68 ms
25,728 KB
testcase_04 AC 68 ms
23,872 KB
testcase_05 AC 67 ms
23,868 KB
testcase_06 AC 68 ms
21,812 KB
testcase_07 AC 67 ms
25,784 KB
testcase_08 AC 66 ms
23,876 KB
testcase_09 AC 67 ms
23,860 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.Linq;

class Program
{
    static void Main()
    {
        double[] d = Console.ReadLine().Split().Select(double.Parse).ToArray();
        Console.WriteLine(Math.Ceiling(d[1] / d[0]));
    }
}
0