結果

問題 No.1352 Three Coins
ユーザー 沙耶花沙耶花
提出日時 2021-01-17 13:20:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 3,694 ms
コンパイル使用メモリ 194,764 KB
最終ジャッジ日時 2025-01-18 00:25:34
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000
	
int main(){
	
	int A,B,C;
	cin>>A>>B>>C;
	
	if(gcd(A,gcd(B,C))!=1){
		cout<<"INF"<<endl;
		return 0;
	}
	
	int ans = 0;
	vector<bool> dp(4000010,false);
	dp[0] = true;
	
	rep(i,dp.size()){
		if(i==0)continue;
		if(i>=A&&dp[i-A])dp[i] = true;
		if(i>=B&&dp[i-B])dp[i] = true;
		if(i>=C&&dp[i-C])dp[i] = true;
		if(dp[i])continue;
		ans++;
	}
	
	cout<<ans<<endl;
	
    return 0;
}
0