結果

問題 No.1352 Three Coins
ユーザー kotatsugamekotatsugame
提出日時 2021-01-17 13:19:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 614 ms
コンパイル使用メモリ 72,128 KB
実行使用メモリ 40,228 KB
最終ジャッジ日時 2024-06-02 12:05:44
合計ジャッジ時間 10,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 446 ms
40,096 KB
testcase_01 AC 386 ms
40,224 KB
testcase_02 AC 318 ms
40,096 KB
testcase_03 AC 316 ms
39,972 KB
testcase_04 AC 336 ms
40,100 KB
testcase_05 AC 307 ms
40,096 KB
testcase_06 AC 297 ms
40,100 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 319 ms
40,224 KB
testcase_09 AC 313 ms
40,096 KB
testcase_10 AC 311 ms
40,096 KB
testcase_11 AC 327 ms
40,224 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 316 ms
40,104 KB
testcase_14 AC 294 ms
40,228 KB
testcase_15 AC 324 ms
40,096 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 338 ms
40,100 KB
testcase_18 AC 304 ms
40,096 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 297 ms
40,096 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 368 ms
40,096 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 415 ms
39,972 KB
testcase_28 AC 301 ms
40,096 KB
testcase_29 AC 346 ms
40,100 KB
testcase_30 AC 293 ms
40,096 KB
testcase_31 AC 327 ms
40,100 KB
testcase_32 AC 277 ms
40,100 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 380 ms
40,096 KB
testcase_35 AC 390 ms
40,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<bitset>
using namespace std;
int gcd(int a,int b){return b?gcd(b,a%b):a;}
const int L=1e8;
bitset<L>dp;
long A,B,C;
main()
{
	cin>>A>>B>>C;
	if(A>B)swap(A,B);
	if(B>C)swap(B,C);
	if(A>B)swap(A,B);
	int g=gcd(A,gcd(B,C));
	if(g>1)
	{
		cout<<"INF"<<endl;
		return 0;
	}
	dp[0]=1;
	for(int i=0;A<<i<L;i++)dp|=dp<<(A<<i);
	for(int i=0;B<<i<L;i++)dp|=dp<<(B<<i);
	for(int i=0;C<<i<L;i++)dp|=dp<<(C<<i);
	cout<<(~dp).count()<<endl;
}
0