結果

問題 No.734 Careful Engineer
ユーザー Mcpu3Mcpu3
提出日時 2018-09-29 00:10:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 41,944 KB
最終ジャッジ日時 2024-10-12 07:44:43
合計ジャッジ時間 4,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,644 KB
testcase_01 AC 141 ms
41,660 KB
testcase_02 AC 137 ms
41,524 KB
testcase_03 AC 130 ms
41,212 KB
testcase_04 AC 141 ms
41,636 KB
testcase_05 AC 138 ms
41,560 KB
testcase_06 AC 143 ms
41,944 KB
testcase_07 AC 130 ms
40,928 KB
testcase_08 AC 145 ms
41,584 KB
testcase_09 AC 142 ms
41,640 KB
testcase_10 AC 144 ms
41,556 KB
testcase_11 AC 142 ms
41,572 KB
testcase_12 AC 141 ms
41,560 KB
testcase_13 AC 139 ms
41,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double A = sc.nextDouble(), B = sc.nextDouble(), C = sc.nextDouble();
        sc.close();
        A *= 60;
        C *= 3600;
        if (B > A) System.out.print(-1);
        else {
            if ((long)(C / (A - B)) == C / (A - B)) System.out.print((long)(C / (A - B)));
            else System.out.print((long)(C / (A - B) + 1));
        }
    }
}
0