結果

問題 No.604 誕生日のお小遣い
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-04 14:39:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 1,766 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-07-08 07:16:06
合計ジャッジ時間 5,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 96 ms
40,396 KB
testcase_02 AC 106 ms
41,000 KB
testcase_03 AC 98 ms
39,964 KB
testcase_04 AC 95 ms
39,580 KB
testcase_05 AC 104 ms
40,256 KB
testcase_06 AC 109 ms
40,924 KB
testcase_07 AC 96 ms
39,800 KB
testcase_08 AC 110 ms
41,320 KB
testcase_09 AC 94 ms
39,560 KB
testcase_10 AC 106 ms
41,164 KB
testcase_11 AC 98 ms
40,076 KB
testcase_12 AC 108 ms
41,192 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 107 ms
41,156 KB
testcase_16 AC 92 ms
40,076 KB
testcase_17 AC 97 ms
40,188 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 0;
    long l = 1;
    long r = (long)Math.pow(10, 18) + 1;
    while(l < r) {
      long med = (l + r) / 2;
      long s = med / a;
      long t = b * s + (med - s);
      if(t >= c) {
        ans = med;
        r = med;
      } else {
        l = med + 1;
      }
    }
    System.out.println(ans);
  }
}
0