結果
問題 |
No.734 Careful Engineer
|
ユーザー |
![]() |
提出日時 | 2022-09-13 12:57:05 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 5 WA * 5 |
ソースコード
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(); } }