結果

問題 No.338 アンケート機能
ユーザー fiord
提出日時 2016-01-29 22:51:17
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 1,327 ms
コンパイル使用メモリ 158,044 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 18:26:32
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int A,B;	cin>>A>>B;
	int ans=INT_MAX;
	for(int a=0;a<=100;a++){
		for(int b=0;b<=100;b++){
			if(a+b==0)	continue;
			if(round((double)100*a/(a+b))!=A)	continue;
			if(round((double)100*b/(a+b))!=B)	continue;
			ans=min(ans,a+b);
		}
	}
	cout<<ans<<endl;
	return 0;
}
0