結果

問題 No.176 2種類の切手
ユーザー pekempeypekempey
提出日時 2015-08-13 22:46:22
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 948 bytes
コンパイル時間 1,465 ms
コンパイル使用メモリ 160,476 KB
実行使用メモリ 13,884 KB
最終ジャッジ日時 2024-04-16 22:15:50
合計ジャッジ時間 3,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a) for (int i = 0; i < (a); i++)
#define rep2(i, a, b) for (int i = (a); i < (b); i++)
#define repr(i, a) for (int i = (a) - 1; i >= 0; i--)
#define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--)
using namespace std;
typedef long long ll;
const ll inf = 1e9;
const ll mod = 1e9 + 7;

typedef pair<ll, ll> P;

// bx+(a-a/b*b)y
// ay+(x-a/by)b
P extgcd(ll a, ll b) {
    if (b == 0) return P(1, 0);
    P p = extgcd(b, a % b);
    return P(p.second, p.first - a / b * p.second);
}

int main() {
    ll A, B, T;
    cin >> A >> B >> T;

    ll g = __gcd(A, B);
    ll a = A / g;
    ll b = B / g;

    P p = extgcd(A, B); 

    ll ans = 0;

    for (ll i = (T + g - 1) / g;; i++) {
        ll x = p.first * i;
        ll y = p.second * i;

        ll l = (-x + b - 1) / b;
        ll r = y / a;

        if (r >= l) {
            ans = g * i;
            break;
        }
    }

    cout << ans << endl;
}
0