QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#780838 | #9620. osu!mania | guc_lzh# | WA | 0ms | 3960kb | C++14 | 466b | 2024-11-25 13:33:01 | 2024-11-25 13:33:02 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
int t,ppmax,a,b,c,d,e,f;
double getf()
{
return 1.0*(a*300+b*300+c*200+d*100+e*50)/(300*(a+b+c+d+e+f))*100;
}
int getg()
{
double k=320*a+300*b+200*c+100*d+50*e;
k/=320*(a+b+c+d+e+f);
return ceil(max( 0.0,k-0.8)*5*ppmax);
}
main(){
cin>>t;
while(t--)
{
cin>>ppmax>>a>>b>>c>>d>>e>>f;
printf("%.2lf%% %lld",getf(),getg() );
}
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3960kb
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% 54397.40% 54395.75% 52397.12% 51493.38% 49998.16% 44596.19% 43196.20% 42397.74% 40199.19% 160499.38% 148399.14% 146698.53% 1252100.00% 2688100.00% 1792100.00% 300052.78% 00.00% 0
result:
wrong answer 1st lines differ - expected: '91.54% 543', found: '91.54% 54397.40% 54395.75% 523...1792100.00% 300052.78% 00.00% 0'