답안 #871596

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
871596 2023-11-11T07:09:10 Z vjudge1 Trol (COCI19_trol) C++17
30 / 50
1000 ms 500 KB
//author: Ahmet Alp Orakci
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define int i64

int calc(int x) {
    int res = 0;
    while(x) {
        res += x % 10;
        x /= 10;
    }

    return res;
}

#define ONLINE_JUDGE
void solve() {
    int l, r;
    cin >> l >> r;

    int ans = 0;
    for(int i = l; i <= r; i++) {
        int x = i;
        while(calc(x) != x) {
            x = calc(x);
        }

        ans += x;
    }

    cout << ans << "\n";
    
    return;
}

signed main() {
    #ifndef ONLINE_JUDGE
        freopen(".in", "r", stdin);
        freopen(".out", "w", stdout);
    #endif

    ios_base::sync_with_stdio(false);
    cin.tie(NULL); cout.tie(NULL);

    int t = 1; cin >> t;
    for(int i = 1; i <= t; i++) {
        solve();
    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 500 KB Output is correct
2 Correct 2 ms 500 KB Output is correct
3 Correct 4 ms 348 KB Output is correct
4 Execution timed out 1091 ms 348 KB Time limit exceeded
5 Execution timed out 1053 ms 344 KB Time limit exceeded