Submission #20685

#TimeUsernameProblemLanguageResultExecution timeMemory
20685점수판에 아이디와 팀명이 같이 표기되니, 신중하게 적어주세요. (#35)채점 시스템 (OJUZ11_judge)C++11
78 / 100
1000 ms1116 KiB
#include <stdio.h>
int main(){
    int i,n,x,y,s;
    scanf("%d",&n);
    for(;n--;){
        scanf("%d%d",&x,&y);
        s=0;
        for(i=10;i<=x;i*=10);
        for(;i+x<=y;++s,i*=10);
        printf("%d\n",s);
    }
    return 0;
}

Compilation message (stderr)

judge.cpp: In function 'int main()':
judge.cpp:4:19: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d",&n);
                   ^
judge.cpp:6:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d%d",&x,&y);
                            ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...