#32198: car parking


oh_my_god (often)

學校 : 臺中市私立明道高級中學
編號 : 196962
來源 : [36.233.201.105]
最後登入時間 :
2023-10-20 23:42:02
e621. 1. 免費停車 (Free Parking) -- 2019年10月TOI練習賽新手組 | From: [1.161.130.192] | 發表日期 : 2022-09-20 22:38

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int n,a,b,c,d=0;
    scanf("%d",&n);
    for(int i=0;i<n;i++)
    {    int m=0;
        scanf("%d%d%d",&a,&b,&c);
        d=a;
        for(int f=0;f<b-a-1;f++)
        {
            
            d++;
            
            if(d%c!=0)
            {    m=1;
                printf("%d ",d);
            }
        }
            if(m==0)
        {
            printf("No free parking spaces.");
        }
printf("\n");    }
}

 
ZeroJudge Forum