結果
| 問題 | No.604 誕生日のお小遣い | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2017-12-04 00:10:28 | 
| 言語 | D (dmd 2.109.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 1 ms / 1,000 ms | 
| コード長 | 1,010 bytes | 
| コンパイル時間 | 605 ms | 
| コンパイル使用メモリ | 105,148 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-06-12 22:46:41 | 
| 合計ジャッジ時間 | 1,356 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 21 | 
ソースコード
import std.stdio, std.string, std.conv, std.algorithm, std.numeric;
import std.range, std.array, std.math, std.typecons, std.container, core.bitop;
void main() {
    long a, b, c;
    scan(a, b, c);
    long btm = 0, top = 10L^^18;
    bool check (long k) {
        if (b == 1) {
            return k >= c;
        }
        else {
            return (k / a) >= (c - k + b - 2) / (b - 1);
        }
    }
    while (top - btm > 1) {
        long mid = (btm + top) / 2;
        if (check(mid)) {
            top = mid;
        }
        else {
            btm = mid;
        }
    }
    writeln(top);
}
void scan(T...)(ref T args) {
    string[] line = readln.split;
    foreach (ref arg; args) {
        arg = line.front.to!(typeof(arg));
        line.popFront();
    }
    assert(line.empty);
}
void fillAll(R, T)(ref R arr, T value) {
    static if (is(typeof(arr[] = value))) {
        arr[] = value;
    }
    else {
        foreach (ref e; arr) {
            fillAll(e, value);
        }
    }
}
            
            
            
        