# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
975198 | 2024-05-04T14:44:18 Z | vjudge1 | Trol (COCI19_trol) | C++17 | 1 ms | 604 KB |
// أَعُوذُ بِاللَّهِ مِنَ الشَّيْطَانِ الرَّجِيمِ #include <bits/stdc++.h> #define bismillah ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define ll long long using namespace std; int kecilkan(int a){ int b = 0; while(a > 0){ b += a%10; a/=10; } if(b>9){ kecilkan(b); }else{ return b; } } int main(){ bismillah int q; cin >> q; int hasil; while(q--){ int l, r; cin >> l >> r; if(l > 9){ l = kecilkan(l); } if(r > 9){ r = kecilkan(r); } hasil = 0; for(int i = l; i <= r; i++){ hasil += i; } cout << hasil << endl; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Runtime error | 1 ms | 604 KB | Execution killed with signal 6 |
3 | Runtime error | 1 ms | 604 KB | Execution killed with signal 6 |
4 | Runtime error | 1 ms | 604 KB | Execution killed with signal 6 |
5 | Runtime error | 1 ms | 600 KB | Execution killed with signal 6 |