結果

問題 No.982 Add
ユーザー ferinferin
提出日時 2020-02-11 14:22:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 716 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 2,417 ms
コンパイル使用メモリ 207,828 KB
実行使用メモリ 136,380 KB
最終ジャッジ日時 2024-10-01 07:34:34
合計ジャッジ時間 15,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
135,636 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 615 ms
135,408 KB
testcase_03 AC 696 ms
134,672 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 686 ms
134,960 KB
testcase_06 AC 608 ms
134,912 KB
testcase_07 AC 666 ms
135,196 KB
testcase_08 AC 630 ms
134,944 KB
testcase_09 AC 709 ms
135,172 KB
testcase_10 AC 712 ms
135,724 KB
testcase_11 AC 685 ms
134,384 KB
testcase_12 AC 588 ms
135,264 KB
testcase_13 AC 588 ms
135,704 KB
testcase_14 AC 465 ms
134,552 KB
testcase_15 AC 639 ms
135,672 KB
testcase_16 AC 662 ms
136,380 KB
testcase_17 AC 605 ms
134,860 KB
testcase_18 AC 2 ms
6,824 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,824 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 716 ms
134,528 KB
testcase_25 AC 715 ms
134,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using PII = pair<ll, ll>;
#define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define ALL(x) x.begin(), x.end()
template<typename T> void chmin(T &a, const T &b) { a = min(a, b); }
template<typename T> void chmax(T &a, const T &b) { a = max(a, b); }
struct FastIO {FastIO() { cin.tie(0); ios::sync_with_stdio(0); }}fastiofastio;
#ifdef DEBUG_ 
#include "../program_contest_library/memo/dump.hpp"
#else
#define dump(...)
#endif
const ll INF = 1LL<<60;

int main(void) {
    ll a, b;
    cin >> a >> b;

    if(gcd(a, b) != 1) {
        cout << -1 << endl;
        return 0;
    }

    vector<ll> v;
    REP(i, 3000) REP(j, 3000) if(a*i+b*j>0) v.push_back(a*i+b*j);
    sort(ALL(v));
    v.erase(unique(ALL(v)), v.end());
    // {
    //     vector<ll> d;
    //     REP(i, 400) d.push_back(v[i]);
    //     dump(d);
    // }

    ll sz = min((ll)v.size(), 20000LL);
    dump(v.back(), v.size());

    cout << v[sz-1] - sz << endl; 

    return 0;
}
0