結果

問題 No.1352 Three Coins
ユーザー k
提出日時 2021-01-18 20:44:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 195,692 KB
最終ジャッジ日時 2025-01-18 02:15:12
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

long long gcd(long long a, long long b) {
  if (b == 0)
    return a;
  return gcd(b, a%b);    
}

long long gcd(int a, int b) {
  return gcd((long long)a, (long long)b);
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int a, b, c;
  cin >> a >> b >> c;
  
  if (gcd(a, gcd(b, c)) > 1) {
    cout << "INF" << endl;
  } else {
    vector<bool> dp(10000000);
    dp[0] = true;
    int ret = 0;
    for (int i = 0; i < 10000000; i++) {
      if (dp[i]) {
        if (i + a < 10000000) dp[i+a] = true;
        if (i + b < 10000000) dp[i+b] = true;
        if (i + c < 10000000) dp[i+c] = true;        
      } else {
        ++ret;
      }
    }
    cout << ret << endl;
  }
  
  return 0;
}
0