結果

問題 No.1352 Three Coins
ユーザー ぷらぷら
提出日時 2021-01-17 13:55:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 942 bytes
コンパイル時間 1,598 ms
コンパイル使用メモリ 171,772 KB
実行使用メモリ 299,300 KB
最終ジャッジ日時 2024-11-29 20:12:57
合計ジャッジ時間 37,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
112,932 KB
testcase_02 AC 279 ms
16,420 KB
testcase_03 AC 45 ms
101,920 KB
testcase_04 AC 5 ms
13,640 KB
testcase_05 AC 1,814 ms
29,472 KB
testcase_06 TLE -
testcase_07 AC 2 ms
12,064 KB
testcase_08 TLE -
testcase_09 AC 781 ms
47,488 KB
testcase_10 AC 1,660 ms
33,312 KB
testcase_11 AC 1,719 ms
149,504 KB
testcase_12 AC 2 ms
12,064 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 2 ms
12,068 KB
testcase_17 AC 17 ms
6,816 KB
testcase_18 AC 497 ms
13,184 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 TLE -
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 11 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 TLE -
testcase_29 AC 957 ms
6,912 KB
testcase_30 TLE -
testcase_31 AC 295 ms
5,632 KB
testcase_32 TLE -
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef pair<int,int> P;
int INF = 3e18+7;
int mod = 1e9+7;
int dx[] = {1, 0,-1, 0, 1, 1,-1,-1};
int dy[] = {0, 1, 0,-1, 1,-1, 1,-1};
int gcd(int X,int Y) {
    if(X%Y == 0) {
        return Y;
    }
    else {
        return gcd(Y,X%Y);
    }
}
signed main() {
    int A,B,C;
    cin >> A >> B >> C;
    if(gcd(gcd(A,B),C) != 1) {
        cout << "INF" << endl;
        return 0;
    }
    int mn = INF;
    if(gcd(A,B) == 1) {
        mn = (A-1)*(B-1);
    }
    if(gcd(B,C) == 1) {
        mn = min(mn,(B-1)*(C-1));
    }
    if(gcd(A,C) == 1) {
        mn = min(mn,(A-1)*(C-1));
    }
    set<int>st;
    for(int i = 0; i <= 2000; i++) {
        for(int j = 0; j <= 2000 && A*i+B*j <= mn; j++) {
            for(int k = 0; k <= 2000 && A*i+B*j+C*k <= mn; k++) {
                st.insert(A*i+B*j+C*k);
            }
        }
    }
    cout << mn-st.size()+1 << endl;
}
0