QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#761602 | #9620. osu!mania | rea_lity | AC ✓ | 1ms | 3592kb | C++23 | 1.4kb | 2024-11-19 01:33:37 | 2024-11-19 01:33:37 |
Judging History
answer
#include <iostream>
#include <iomanip> // 用于设置输出精度
#include <cmath> // 用于四舍五入
using namespace std;
#define int long long
// 计算准确率
double calculateAccuracy(long long a, long long b, long long c, long long d, long long e, long long f) {
double totalNotes = a + b + c + d + e + f;
double accuracy = (300 * a + 300 * b + 200 * c + 100 * d + 50 * e) / (300 * totalNotes) * 100;
return accuracy;
}
// 计算个人表现
long long calculatePP(long long ppmax, long long a, long long b, long long c, long long d, long long e, long long f) {
double totalNotes = a + b + c + d + e + f;
double ppValue = (320 * a + 300 * b + 200 * c + 100 * d + 50 * e) / (320 * totalNotes);
int x = round(ppValue * 5 * ppmax - 0.8 * 5 * ppmax);
return max(x,0LL); // 四舍五入到最近的整数
}
signed main() {
ios_base::sync_with_stdio(false); // 加速输入输出
cin.tie(NULL);
int T;
cin >> T; // 输入数据组数
while (T--) {
long long ppmax;
long long a, b, c, d, e, f;
cin >> ppmax >> a >> b >> c >> d >> e >> f;
double accuracy = calculateAccuracy(a, b, c, d, e, f);
long long pp = calculatePP(ppmax, a, b, c, d, e, f);
cout << fixed << setprecision(2) << accuracy << "% " << pp << endl; // 输出结果
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3592kb
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.54% 543 97.40% 543 95.75% 523 97.12% 513 93.38% 499 98.16% 444 96.19% 430 96.20% 423 97.74% 400 99.19% 1604 99.38% 1482 99.14% 1465 98.53% 1251 100.00% 2688 100.00% 1792 100.00% 3000 52.78% 0 0.00% 0
result:
ok 18 lines