結果

問題 No.734 Careful Engineer
ユーザー tentententen
提出日時 2022-09-13 12:57:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,412 bytes
コンパイル時間 5,565 ms
コンパイル使用メモリ 73,616 KB
実行使用メモリ 49,512 KB
最終ジャッジ日時 2023-08-20 14:14:38
合計ジャッジ時間 7,547 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
49,312 KB
testcase_06 AC 44 ms
49,484 KB
testcase_07 AC 41 ms
49,352 KB
testcase_08 AC 40 ms
49,304 KB
testcase_09 AC 42 ms
49,356 KB
testcase_10 AC 41 ms
47,388 KB
testcase_11 AC 42 ms
49,456 KB
testcase_12 AC 42 ms
49,488 KB
testcase_13 AC 41 ms
49,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long a = sc.nextInt() * 60L;
        long b = sc.nextInt();
        long c = sc.nextInt() * 3600L;
        if (a <= b) {
            System.out.println(-1);
            return;
        }
        long left = 0;
        long right = Integer.MAX_VALUE;
        while (right - left > 1) {
            long m = (left + right) / 2;
            if (a * m >= b * m + c) {
                right = m;
            } else {
                left = m;
            }
        }
        System.out.println(right);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0