結果

問題 No.338 アンケート機能
ユーザー hotpepsihotpepsi
提出日時 2016-01-29 22:33:12
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 56,712 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 02:48:08
合計ジャッジ時間 1,427 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>

using namespace std;

int main(int argc, char *argv[])
{
	long long int A, B;
	cin >> A >> B;
	long long ans = 1;
	if (A > 0 && B > 0) {
		for (ans = 2;; ++ans) {
			long long p = (A * ans) / (A + B);
			long long q = ans - p;
			long long a = (p * 100 + (p + q) / 2) / (p + q);
			long long b = (q * 100 + (p + q) / 2) / (p + q);
			if (a == A && b == B) {
				break;
			}
			++p;
			--q;
			a = (p * 100 + (p + q) / 2) / (p + q);
			b = (q * 100 + (p + q) / 2) / (p + q);
			if (a == A && b == B) {
				break;
			}
		}
	}
	cout << ans << endl;
	return 0;
}
0