結果
| 問題 | No.734 Careful Engineer |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-04-27 13:11:17 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 56 ms / 2,000 ms |
| + 264µs | |
| コード長 | 717 bytes |
| 記録 | |
| コンパイル時間 | 3,090 ms |
| コンパイル使用メモリ | 84,448 KB |
| 実行使用メモリ | 45,832 KB |
| 最終ジャッジ日時 | 2026-07-12 08:06:41 |
| 合計ジャッジ時間 | 5,092 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 13 |
ソースコード
import java.io.*;
import java.util.Scanner;
public class Main_yukicoder734 {
private static Scanner sc;
private static Printer pr;
private static void solve() {
long a = sc.nextInt();
long b = sc.nextInt();
long c = sc.nextInt();
// 60 a x >= b x + 3600c
if (60 * a - b <= 0) {
pr.println(-1);
} else {
long x = (3600 * c + 60 * a - b - 1) / (60 * a - b);
pr.println(x);
}
}
// ---------------------------------------------------
public static void main(String[] args) {
sc = new Scanner(System.in);
pr = new Printer(System.out);
solve();
pr.close();
sc.close();
}
static class Printer extends PrintWriter {
Printer(OutputStream out) {
super(out);
}
}
}