# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
976042 | 2024-05-06T05:57:57 Z | vjudge1 | Trol (COCI19_trol) | C++ | 1 ms | 600 KB |
#include <iostream> using namespace std; int main(){ int q; cin>>q; while (q--) { long long l,r; cin>>l>>r; long long ans=0; for (int i = l; i <= r; i++) { if(i%9==0){ ans+=9; }else{ ans+=i%9; } } } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Incorrect | 0 ms | 348 KB | Output isn't correct |
4 | Incorrect | 1 ms | 600 KB | Output isn't correct |
5 | Incorrect | 0 ms | 348 KB | Output isn't correct |