QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#811276#9620. osu!maniaTosakaUCW#WA 0ms4004kbC++201.8kb2024-12-12 17:18:132024-12-12 17:18:18

Judging History

你现在查看的是最新测评结果

  • [2024-12-12 17:18:18]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:4004kb
  • [2024-12-12 17:18:13]
  • 提交

answer

#include <bits/stdc++.h>
using i64 = long long;
#define int i64
#define pb push_back
#define ep emplace
#define eb emplace_back
using std::cerr;
// using namespace std::views;
// using namespace std::ranges;
using std::max, std::min, std::swap, std::array;
using std::cin, std::cout, std::string, std::vector;
using std::ostream;
template <class T1, class T2> ostream &operator<<(ostream &os, const std::pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << '\n'; }
using pii = std::pair<int, int>;
#define fi first
#define se second

double eps = 1e-7;

void solve() {
    double ppmax, a, b, c, d, e, f;
    cin >> ppmax >> a >> b >> c >> d >> e >> f;

    double pp = 0;
    pp += 320 * a;
    pp += 300 * b;
    pp += 200 * c;
    pp += 100 * d;
    pp += 50 * e;
    pp /= 320.0 * (a + b + c + d + e + f);
    pp -= 0.8;
    if (pp < 0 - eps) pp = 0;
    pp *= 5.0 * ppmax;
    // pp = round(pp);
    // cout << pp << '\n';
    int ppans = int(pp + 0.5);

    double acc = 0;
    acc += 300 * a;
    acc += 300 * b;
    acc += 200 * c;
    acc += 100 * d;
    acc += 50 * e;
    acc /= 300.0 * (a + b + c + d + e + f);

    acc *= 100.0;

    printf("%.4f%% %d\n", acc, ppans);

    // cout << acc << ' ' << ppans << '\n';
}

signed main() {
    // std::ios::sync_with_stdio(false);
    // std::cin.tie(nullptr);
    int T; cin >> T;
    for (; T--; solve());
    // solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 4004kb

input:

18
1279
4624 4458 1109 220 103 314
753
3604 3204 391 33 9 29
807
5173 3986 763 84 29 96
718
576 461 60 5 2 7
947
4058 3268 764 169 42 158
568
2660 1731 161 16 6 15
641
4181 3126 656 56 10 43
630
3029 2336 377 41 10 61
529
1991 1354 181 11 9 5
1802
8321 2335 115 19 11 27
1645
3965 1087 41 6 1 13
1688...

output:

91.5389% 543
97.4026% 543
95.7507% 523
97.1197% 513
93.3759% 499
98.1623% 444
96.1926% 430
96.2020% 423
97.7424% 400
99.1950% 1604
99.3839% 1482
99.1421% 1465
98.5314% 1251
100.0000% 2687
100.0000% 1792
100.0000% 3000
52.7778% 0
0.0000% 0

result:

wrong answer 1st lines differ - expected: '91.54% 543', found: '91.5389% 543'