結果

問題 No.734 Careful Engineer
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-15 11:15:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-07-06 22:41:14
合計ジャッジ時間 4,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,012 KB
testcase_01 AC 127 ms
53,752 KB
testcase_02 AC 127 ms
53,828 KB
testcase_03 AC 109 ms
52,736 KB
testcase_04 AC 127 ms
53,844 KB
testcase_05 AC 129 ms
54,056 KB
testcase_06 AC 124 ms
53,828 KB
testcase_07 AC 126 ms
53,980 KB
testcase_08 AC 119 ms
54,120 KB
testcase_09 AC 128 ms
54,116 KB
testcase_10 AC 124 ms
54,068 KB
testcase_11 AC 127 ms
54,020 KB
testcase_12 AC 133 ms
53,900 KB
testcase_13 AC 122 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long a = sc.nextLong();
    long b = sc.nextLong();
    long c = sc.nextLong();
    long ans = -1;
    if(60 * a > b) {
      if((3600 * c) % (60 * a - b) == 0) {
        ans = (3600 * c) / (60 * a - b);
      } else {
        ans = (3600 * c) / (60 * a - b) + 1;
      }
    }
    System.out.println(ans);
  }
}
0