結果

問題 No.604 誕生日のお小遣い
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-20 17:33:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 641 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 55,996 KB
最終ジャッジ日時 2024-09-17 06:40:24
合計ジャッジ時間 5,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 114 ms
53,944 KB
testcase_02 AC 111 ms
53,536 KB
testcase_03 AC 119 ms
54,192 KB
testcase_04 AC 99 ms
52,728 KB
testcase_05 AC 107 ms
54,104 KB
testcase_06 AC 102 ms
53,076 KB
testcase_07 AC 99 ms
52,992 KB
testcase_08 AC 109 ms
54,036 KB
testcase_09 AC 109 ms
53,216 KB
testcase_10 AC 106 ms
52,948 KB
testcase_11 AC 108 ms
53,592 KB
testcase_12 AC 112 ms
54,052 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 108 ms
53,760 KB
testcase_16 AC 100 ms
53,064 KB
testcase_17 AC 110 ms
53,052 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        long a = stdin.nextLong();
        long b = stdin.nextLong();
        long c = stdin.nextLong();
        
        long left = -1;
        long right = c + 1;
        while (right - left > 1) {
            long mid = left + (right - left) / 2;
            
            long sum = b * (mid / a) + (mid - mid / a);
            if (c <= sum) {
                right = mid;
            } else {
                left = mid;
            }
        }
        
        System.out.println(right);
    }
}
0