結果

問題 No.338 アンケート機能
コンテスト
ユーザー fiord
提出日時 2016-01-29 22:51:17
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 327 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 881 ms
コンパイル使用メモリ 175,240 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-04-10 00:06:33
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 9
権限があれば一括ダウンロードができます

ソースコード

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<=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