結果

問題 No.338 アンケート機能
ユーザー legendcn666legendcn666
提出日時 2024-08-18 17:13:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 687 bytes
コンパイル時間 1,509 ms
コンパイル使用メモリ 166,096 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-18 17:13:28
合計ジャッジ時間 2,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,812 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 3 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include <bits/stdc++.h>
using namespace std;
typedef long long ll; 
// # define int long long
# define lc u << 1
# define rc u << 1 | 1
# define fi first
# define se second

int A, B;
int getround (double x)  { return x > 0 ? x + 0.5 : x - 0.5; }
signed main ()
{
    // freopen ("poll.in", "r", stdin); freopen ("poll.out", "w", stdout);
    scanf ("%d%d", &A, &B);
    int ans = 1e9;
    for (int a = 1; a <= 1000; a ++ )
    {
        for (int b = 1; b <= 1000; b ++ )
        {
            int t = (a + b);
            if (getround (100.0 * a / t) == A && getround (100.0 * b / t) == B)
                ans = min (ans, t);
        }
    }
    printf ("%d\n", ans);
    return 0;
}
0