結果

問題 No.734 Careful Engineer
ユーザー tentententen
提出日時 2020-09-02 11:46:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 48,312 KB
最終ジャッジ日時 2024-11-21 14:06:56
合計ジャッジ時間 4,788 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
48,220 KB
testcase_01 AC 124 ms
48,312 KB
testcase_02 AC 127 ms
48,104 KB
testcase_03 AC 127 ms
47,908 KB
testcase_04 AC 129 ms
47,864 KB
testcase_05 AC 128 ms
48,244 KB
testcase_06 AC 124 ms
48,068 KB
testcase_07 AC 130 ms
48,224 KB
testcase_08 AC 127 ms
48,272 KB
testcase_09 AC 133 ms
48,244 KB
testcase_10 AC 130 ms
48,120 KB
testcase_11 AC 131 ms
47,784 KB
testcase_12 AC 131 ms
48,004 KB
testcase_13 AC 133 ms
48,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long a = sc.nextLong() * 60;
        long b = sc.nextLong();
        long c = sc.nextLong() * 3600;
        if (a <= b) {
            System.out.println(-1);
        } else {
            System.out.println((c + a - b - 1) / (a - b));
        }
    }
}
0