結果
| 問題 | No.338 アンケート機能 |
| コンテスト | |
| ユーザー |
fiord
|
| 提出日時 | 2016-01-30 07:40:09 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,000 ms |
| コード長 | 329 bytes |
| 記録 | |
| コンパイル時間 | 1,018 ms |
| コンパイル使用メモリ | 174,724 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-08 10:18:51 |
| 合計ジャッジ時間 | 2,431 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
#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;
}
fiord