結果

問題 No.1352 Three Coins
ユーザー ぷらぷら
提出日時 2021-01-17 14:01:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 1,271 ms
コンパイル使用メモリ 165,832 KB
実行使用メモリ 34,848 KB
最終ジャッジ日時 2024-06-02 12:07:56
合計ジャッジ時間 2,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
34,676 KB
testcase_01 AC 10 ms
34,692 KB
testcase_02 AC 11 ms
34,668 KB
testcase_03 AC 12 ms
34,684 KB
testcase_04 AC 12 ms
34,720 KB
testcase_05 AC 11 ms
34,696 KB
testcase_06 AC 12 ms
34,776 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 12 ms
34,668 KB
testcase_09 AC 12 ms
34,848 KB
testcase_10 AC 11 ms
34,712 KB
testcase_11 AC 12 ms
34,660 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 11 ms
34,744 KB
testcase_14 AC 11 ms
34,696 KB
testcase_15 AC 12 ms
34,692 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 11 ms
34,696 KB
testcase_18 AC 12 ms
34,756 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 13 ms
34,748 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 12 ms
34,728 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 11 ms
34,696 KB
testcase_28 AC 11 ms
34,644 KB
testcase_29 AC 13 ms
34,692 KB
testcase_30 AC 10 ms
33,376 KB
testcase_31 AC 11 ms
34,728 KB
testcase_32 AC 9 ms
34,280 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 11 ms
34,660 KB
testcase_35 AC 11 ms
34,636 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);
    }
}
int dp[4003000];
signed main() {
    int A,B,C;
    cin >> A >> B >> C;
    if(gcd(gcd(A,B),C) != 1) {
        cout << "INF" << endl;
        return 0;
    }
    int ans = 0;
    dp[0] = 1;
    for(int i = 0; i <= 4000000; i++) {
        if(dp[i] == 1) {
            dp[i+A] = 1;
            dp[i+B] = 1;
            dp[i+C] = 1;
        }
        else {
            ans++;
        }
    }
    cout << ans << endl;
}
0