結果

問題 No.982 Add
ユーザー ferinferin
提出日時 2020-02-11 14:22:05
言語 C++17
(gcc 12.2.0 + boost 1.81.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,051 bytes
コンパイル時間 2,024 ms
実行使用メモリ 265,372 KB
最終ジャッジ日時 2022-11-24 17:36:50
合計ジャッジ時間 40,980 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,652 ms
265,296 KB
testcase_01 AC 1 ms
3,464 KB
testcase_02 AC 1,908 ms
265,304 KB
testcase_03 TLE -
testcase_04 AC 2 ms
3,392 KB
testcase_05 TLE -
testcase_06 AC 1,863 ms
265,312 KB
testcase_07 AC 1,983 ms
265,180 KB
testcase_08 AC 1,957 ms
265,372 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,877 ms
265,312 KB
testcase_13 AC 1,858 ms
265,300 KB
testcase_14 AC 1,494 ms
265,180 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,890 ms
265,252 KB
testcase_18 AC 2 ms
3,388 KB
testcase_19 AC 2 ms
3,384 KB
testcase_20 AC 1 ms
3,544 KB
testcase_21 AC 2 ms
3,396 KB
testcase_22 AC 2 ms
3,440 KB
testcase_23 AC 2 ms
3,396 KB
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

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, 5000) REP(j, 5000) 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