QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#772932#1792. Beer BillI_be_wannaAC ✓0ms3848kbC++17579b2024-11-22 23:02:102024-11-22 23:02:11

Judging History

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

  • [2024-11-22 23:02:11]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3848kb
  • [2024-11-22 23:02:10]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

int main(){
    string s;
    ll ans=0;
    while(cin>>s){
        int len=s.length();
        int cnt=0;
        string u="";
        for(int i=len-1;i>=0;i--){
            if(s[i]=='|') cnt++;
            if(isdigit(s[i])) u=s[i]+u;
        }
        if(cnt==len) ans+=len*42;
        else{
            stringstream ss;
        	int a;
            ss << u;
            ss >> a;
            ans+=a*cnt;
        }
    }
    cout<<int(ceil(double(ans)/10.0))*10<<",-";
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3600kb

input:

||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
893,-|||||||||
|||
|||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||
545,-|||||||||||||||||||||||
810,-|
699,-|||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||...

output:

773980,-

result:

ok single line: '773980,-'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3532kb

input:

||||||||
229,-|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
71,-||||||||||||||||||||||||
215,-||||||||||||||
572,-||||||||||||||||||||||||||||||||||||||||||||||||
808,-||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||...

output:

377720,-

result:

ok single line: '377720,-'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

543,-|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
853,-||||||||||||||||
81,-|||||||||||||||||||
676,-||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||...

output:

1433090,-

result:

ok single line: '1433090,-'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3800kb

input:

416,-|||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
696,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
381,-|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
954,-...

output:

549070,-

result:

ok single line: '549070,-'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3836kb

input:

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
87,-|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||
379,-|||
182,-||||||||||||||||||||||
341,-|||||||||||||||||||||||||||||...

output:

1068380,-

result:

ok single line: '1068380,-'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3604kb

input:

||||||||||||||||
553,-||||||||||
913,-|||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
274,-|||||||||||||||||||||||||||||||||||||||||||||||||||...

output:

1167160,-

result:

ok single line: '1167160,-'

Test #7:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

||||||||||||||||||||||||||||||
176,-||||||||||||||
972,-||||||||||||||||||||||||||||||||||||||||||||||||||||||
831,-||||||||||||||||||||||||||
482,-|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
339,-||||||||||||
141,-|||||||||||||||||||||||||||||||||||||||||||||||...

output:

943750,-

result:

ok single line: '943750,-'

Test #8:

score: 0
Accepted
time: 0ms
memory: 3848kb

input:

846,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
614,-|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
268,-|||||||||||||||||||
309,-|...

output:

781860,-

result:

ok single line: '781860,-'

Test #9:

score: 0
Accepted
time: 0ms
memory: 3536kb

input:

|||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
173,-|||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||
159,-||||||||||||||||||||||||||||||||||||||
||||||||...

output:

528010,-

result:

ok single line: '528010,-'

Test #10:

score: 0
Accepted
time: 0ms
memory: 3760kb

input:

236,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||
840,-|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
138,-|||||||||||||||||||||||||||||
697,-||||||||||||||
449,-|

output:

92540,-

result:

ok single line: '92540,-'

Test #11:

score: 0
Accepted
time: 0ms
memory: 3540kb

input:

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
728,-|||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||
|||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||
597,-||
242,-|||||||||||||||

output:

52230,-

result:

ok single line: '52230,-'

Test #12:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

241,-||||||||||||||||||||||||||||||||||||||||||
86,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||
989,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||...

output:

639850,-

result:

ok single line: '639850,-'

Test #13:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

|||||||||||||||||||||||||||||||||||||||
262,-|||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||
453,-||||||||||||||...

output:

933340,-

result:

ok single line: '933340,-'

Test #14:

score: 0
Accepted
time: 0ms
memory: 3540kb

input:

740,-||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
709,-||||||||||||||||||||||||||||||
369,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
584,-|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||...

output:

338080,-

result:

ok single line: '338080,-'

Test #15:

score: 0
Accepted
time: 0ms
memory: 3600kb

input:

|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
314,-||||||||||||||||||
343,-||||||||||||||||||||||||||||||||||||
721,-|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
611,-||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||...

output:

278300,-

result:

ok single line: '278300,-'

Test #16:

score: 0
Accepted
time: 0ms
memory: 3488kb

input:

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
407,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||...

output:

77400,-

result:

ok single line: '77400,-'

Test #17:

score: 0
Accepted
time: 0ms
memory: 3844kb

input:

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
724,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
176,-|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||...

output:

1362980,-

result:

ok single line: '1362980,-'

Test #18:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
118,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
||...

output:

1068250,-

result:

ok single line: '1068250,-'

Test #19:

score: 0
Accepted
time: 0ms
memory: 3640kb

input:

||||||||||||||||||||||||||||||||||
860,-||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||
201,-||||||||||||||||||||||||||||||||
969,-||||||||||||||||||||||||||||||
492,-||||||||||||||||||||||||||||||||||||||||||||||||...

output:

1185940,-

result:

ok single line: '1185940,-'

Test #20:

score: 0
Accepted
time: 0ms
memory: 3768kb

input:

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
166,-||||||||||||||
|||||||||||||||||||||
||||||||||||||||||||||||||||||||||||
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||...

output:

659700,-

result:

ok single line: '659700,-'