結果

問題 No.338 アンケート機能
コンテスト
ユーザー fiord
提出日時 2016-01-30 07:40:09
言語 C++11
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 4 ms / 2,000 ms
+ 802µs
コード長 329 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 848 ms
コンパイル使用メモリ 174,988 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2026-09-21 01:29:01
合計ジャッジ時間 2,597 ms
ジャッジサーバーID
(参考情報)
judge4_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
int main(){
	int A,B;	cin>>A>>B;
	int ans=INT_MAX;
	for(int a=0;a<=1000;a++){
		for(int b=0;b<=1000;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