結果

問題 No.734 Careful Engineer
ユーザー Mcpu3Mcpu3
提出日時 2018-09-29 00:08:01
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 73,616 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-10-12 07:40:40
合計ジャッジ時間 5,069 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,456 KB
testcase_01 WA -
testcase_02 AC 138 ms
41,220 KB
testcase_03 AC 141 ms
41,344 KB
testcase_04 AC 139 ms
41,684 KB
testcase_05 AC 139 ms
41,688 KB
testcase_06 AC 126 ms
40,712 KB
testcase_07 AC 137 ms
41,572 KB
testcase_08 AC 142 ms
40,976 KB
testcase_09 AC 136 ms
41,304 KB
testcase_10 AC 139 ms
41,256 KB
testcase_11 AC 135 ms
40,908 KB
testcase_12 AC 133 ms
40,604 KB
testcase_13 AC 124 ms
40,908 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(C / (A - B));
            else System.out.print((long)(C / (A - B) + 1));
        }
    }
}
0