답안 #977212

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
977212 2024-05-07T14:02:41 Z vjudge1 Trol (COCI19_trol) C++17
30 / 50
1000 ms 348 KB
#include<bits/stdc++.h>
using namespace std;
#define ll long long

int main(){
	int n;
	cin>>n;
	while(n--){
		ll l,r;
		cin>>l>>r;
		ll ans=0;
		for(ll i=l;i<=r;i++){
		if(i%9==0)ans+=9;
		else ans+=i%9;	
		}
		cout<<ans<<endl;
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Execution timed out 1081 ms 348 KB Time limit exceeded
5 Execution timed out 1081 ms 348 KB Time limit exceeded