# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
975949 |
2024-05-06T03:51:01 Z |
vjudge1 |
Trol (COCI19_trol) |
C++17 |
|
1000 ms |
524288 KB |
#include <bits/stdc++.h>
#define int long long
#define ld long double
using namespace std;
const int N=1e9;
signed main(){
int a; cin>>a;
for(int i=0;i<a;i++){
int x,y,ans=0; cin>>x>>y;
if(x>y){
return 0;
}
int angka[y+7];
for (int i=x;i<=y;i++){
angka[i]=i;
}
for(int j=x;j<=y;j++){
int wawo;
wawo=angka[j]%9;
ans+=wawo;
}
cout<<ans<<endl;
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Incorrect |
6 ms |
8028 KB |
Output isn't correct |
3 |
Execution timed out |
1065 ms |
486480 KB |
Time limit exceeded |
4 |
Runtime error |
507 ms |
524288 KB |
Execution killed with signal 9 |
5 |
Runtime error |
257 ms |
524288 KB |
Execution killed with signal 9 |