Submission #975381

# Submission time Handle Problem Language Result Execution time Memory
975381 2024-05-05T04:34:51 Z vjudge1 Trol (COCI19_trol) C++17
10 / 50
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(ll a, ll b){
    b += a%10;
    a/=10;
    if(a>0){
        kecilkan(a, b);
    }else if(b > 9){
        kecilkan(b, 0);
    }else{
        return b;
    }
}

int main(){
    bismillah
    int q;
    cin >> q;
    int hasil;
    while(q--){
        ll l, r;
        cin >> l >> r;
        if(l > 9){
            l = kecilkan(l, 0);
        }
        if(r > 9){
            r = kecilkan(r, 0);
        }
        hasil = 0;
        for(int i = l; i <= r; i++){
            hasil += i;
        }
        cout << hasil << endl;
    }
}

Compilation message

trol.cpp: In function 'int kecilkan(long long int, long long int)':
trol.cpp:18:1: warning: control reaches end of non-void function [-Wreturn-type]
   18 | }
      | ^
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Runtime error 1 ms 348 KB Execution killed with signal 11
3 Runtime error 1 ms 348 KB Execution killed with signal 11
4 Runtime error 1 ms 344 KB Execution killed with signal 11
5 Runtime error 1 ms 604 KB Execution killed with signal 11