結果

問題 No.734 Careful Engineer
ユーザー tsunabittsunabit
提出日時 2019-07-01 22:02:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 3,275 ms
コンパイル使用メモリ 77,972 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-07-18 07:24:03
合計ジャッジ時間 5,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,148 KB
testcase_01 AC 114 ms
53,984 KB
testcase_02 AC 115 ms
54,236 KB
testcase_03 AC 101 ms
52,984 KB
testcase_04 AC 114 ms
53,956 KB
testcase_05 AC 111 ms
54,136 KB
testcase_06 AC 101 ms
52,816 KB
testcase_07 AC 112 ms
54,080 KB
testcase_08 AC 118 ms
54,184 KB
testcase_09 AC 110 ms
53,984 KB
testcase_10 AC 118 ms
54,244 KB
testcase_11 AC 117 ms
53,996 KB
testcase_12 AC 123 ms
54,232 KB
testcase_13 AC 121 ms
53,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No734 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long a = sc.nextLong(), b = sc.nextLong(), c = sc.nextLong();
    	
    	if(a * 60 <= b) {
    		System.out.println(-1);
    	}else {
    		double t = (double) 3600 * c / (60 * a - b);
    		long ans = (long)Math.ceil(t);
    		System.out.println(ans);
    	}
    }
}
0