結果

問題 No.734 Careful Engineer
ユーザー GrenacheGrenache
提出日時 2019-04-27 13:11:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-11-27 18:11:32
合計ジャッジ時間 5,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,976 KB
testcase_01 AC 125 ms
54,024 KB
testcase_02 AC 125 ms
54,128 KB
testcase_03 AC 131 ms
54,068 KB
testcase_04 AC 127 ms
53,936 KB
testcase_05 AC 114 ms
53,128 KB
testcase_06 AC 122 ms
53,748 KB
testcase_07 AC 122 ms
54,016 KB
testcase_08 AC 125 ms
53,960 KB
testcase_09 AC 126 ms
53,880 KB
testcase_10 AC 124 ms
53,852 KB
testcase_11 AC 108 ms
52,752 KB
testcase_12 AC 126 ms
53,848 KB
testcase_13 AC 123 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
		}
	}
}
0