QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#132231 | #2928. Espresso! | heshamoomar | WA | 0ms | 3492kb | C++14 | 381b | 2023-07-29 05:06:41 | 2023-07-29 05:06:42 |
Judging History
answer
#include<iostream>
using namespace std;
int main(){
int n,s;
cin>>n>>s;
int total=0;
while (n--){
string st;cin>>st;
if(st.size()==1){
total+=st[0]-'0';
}
else{
total+=st[0]-'0';
total+=1;
}
}
(total%s)-1==-1?cout<<0:cout<<(total%s)-1;
return 0;
}//
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3492kb
input:
1 10 4L
output:
4
result:
wrong answer 1st lines differ - expected: '0', found: '4'