結果

問題 No.1352 Three Coins
ユーザー SSRSSSRS
提出日時 2021-01-17 13:11:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 170,964 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-23 09:28:37
合計ジャッジ時間 3,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int gcd(int a, int b){
  if (b == 0){
    return a;
  } else {
    return gcd(b, a % b);
  }
}
int main(){
  int A, B, C;
  cin >> A >> B >> C;
  int g = gcd(A, gcd(B, C));
  if (g > 1){
    cout << "INF" << endl;
  } else {
    vector<int> X = {A, B, C};
    vector<bool> dp(4000001, false);
    dp[0] = true;
    for (int i = 0; i < 3; i++){
      for (int j = 0; j <= 4000000 - X[i]; j++){
        if (dp[j]){
          dp[j + X[i]] = true;
        }
      }
    }
    int ans = 0;
    for (int i = 0; i <= 4000000; i++){
      if (!dp[i]){
        ans++;
      }
    }
    cout << ans << endl;
  }
}
0