結果
| 問題 |
No.338 アンケート機能
|
| コンテスト | |
| ユーザー |
fiord
|
| 提出日時 | 2016-01-30 07:40:09 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 2,000 ms |
| コード長 | 329 bytes |
| コンパイル時間 | 1,742 ms |
| コンパイル使用メモリ | 158,064 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-08 02:56:04 |
| 合計ジャッジ時間 | 2,690 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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