結果

問題 No.388 階段 (1)
ユーザー masaktmasakt
提出日時 2017-03-12 19:39:53
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 101,836 KB
実行使用メモリ 24,976 KB
最終ジャッジ日時 2023-09-12 12:08:06
合計ジャッジ時間 3,969 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 65 ms
22,848 KB
testcase_02 AC 65 ms
22,852 KB
testcase_03 AC 66 ms
24,696 KB
testcase_04 WA -
testcase_05 AC 64 ms
20,808 KB
testcase_06 AC 65 ms
24,744 KB
testcase_07 AC 66 ms
24,780 KB
testcase_08 AC 66 ms
24,840 KB
testcase_09 AC 65 ms
24,868 KB
testcase_10 WA -
testcase_11 AC 65 ms
24,812 KB
testcase_12 AC 64 ms
24,704 KB
testcase_13 AC 65 ms
22,788 KB
testcase_14 AC 65 ms
22,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
class Program
{
    static void Main(string[] args)
    {
        args = Console.ReadLine().Split(' ');
        double a = double.Parse(args[0]) + 10E-9;
        double b = double.Parse(args[1]) + 0.5;
        Console.WriteLine(Math.Ceiling(a / b));
    }
}
0