結果

問題 No.734 Careful Engineer
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-11-26 22:40:33
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 113,004 KB
実行使用メモリ 26,104 KB
最終ジャッジ日時 2024-06-11 16:06:19
合計ジャッジ時間 1,543 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
25,848 KB
testcase_01 AC 21 ms
23,800 KB
testcase_02 AC 22 ms
23,928 KB
testcase_03 AC 21 ms
24,064 KB
testcase_04 AC 22 ms
26,000 KB
testcase_05 AC 21 ms
23,852 KB
testcase_06 AC 21 ms
23,680 KB
testcase_07 AC 21 ms
25,848 KB
testcase_08 AC 22 ms
25,972 KB
testcase_09 AC 21 ms
23,680 KB
testcase_10 AC 22 ms
25,980 KB
testcase_11 AC 22 ms
26,104 KB
testcase_12 AC 21 ms
25,724 KB
testcase_13 AC 21 ms
25,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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

class Program {
    static void Main() {
        var hand = NextInt() * 60L;
        var runCost = NextInt();
        var initCost = NextInt() * 3600L;

        if (hand <= runCost) {
            WriteLine(-1);
            return;
        }
        WriteLine((initCost - 1) / (hand - runCost) + 1);
    }

    static int NextInt() {
        return int.Parse(NextString());
    }

    static string NextString() {
        var result = new List<char>();
        while (true) {
            int next = Read();
            if (next < 0)
                break;
            var nextChar = (char)next;
            if (!char.IsWhiteSpace(nextChar))
                result.Add(nextChar);
            else if (nextChar != '\r')
                break;
        }
        return string.Join("", result);
    }
}
0