結果
問題 | No.734 Careful Engineer |
ユーザー | tenten |
提出日時 | 2022-09-13 12:57:05 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,412 bytes |
コンパイル時間 | 4,385 ms |
コンパイル使用メモリ | 76,788 KB |
実行使用メモリ | 37,056 KB |
最終ジャッジ日時 | 2024-11-30 16:53:36 |
合計ジャッジ時間 | 3,857 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 48 ms
36,652 KB |
testcase_06 | AC | 47 ms
36,716 KB |
testcase_07 | AC | 46 ms
37,024 KB |
testcase_08 | AC | 48 ms
36,628 KB |
testcase_09 | AC | 47 ms
37,040 KB |
testcase_10 | AC | 48 ms
36,668 KB |
testcase_11 | AC | 46 ms
36,940 KB |
testcase_12 | AC | 46 ms
36,580 KB |
testcase_13 | AC | 48 ms
36,844 KB |
ソースコード
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(); } }