結果
| 問題 |
No.338 アンケート機能
|
| コンテスト | |
| ユーザー |
h_noson
|
| 提出日時 | 2016-02-19 12:57:16 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 510 bytes |
| コンパイル時間 | 418 ms |
| コンパイル使用メモリ | 60,856 KB |
| 最終ジャッジ日時 | 2024-11-14 19:34:42 |
| 合計ジャッジ時間 | 795 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:17:13: error: ‘round’ was not declared in this scope
17 | if (round(x*100/(x+y)) == max(a,b) && round(y*100/(x+y)) == min(a,b)) {
| ^~~~~
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
using namespace std;
#define RREP(i,s,e) for (i = e-1; i >= s; i--)
#define rrep(i,n) RREP(i,0,n)
#define REP(i,s,e) for (i = s; i < e; i++)
#define rep(i,n) REP(i,0,n)
int main() {
int a, b;
double x, y;
cin >> a >> b;
REP (x,1,300) rep(y,x+1) {
if (round(x*100/(x+y)) == max(a,b) && round(y*100/(x+y)) == min(a,b)) {
cout << x+y << endl;
return 0;
}
}
return 0;
}
h_noson