답안 #72091

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
72091 2018-08-26T05:13:00 Z ㅋ(#2245, dohyun0324) 퍼솔헌터 (FXCUP3_firstsolve) Text
0 / 100
0 ms 0 KB
#include<stdio.h>
int main()
{
    int i;
    for(i=1;i<=100;i++)
    {
        if((59*i)%101>=91) printf("%d ",i);
    }
    printf("12 34");
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 0 KB Expected integer, but "#include<stdio.h>" found