Create 1726.c

pull/6/head
KiritoTRw 2016-04-28 08:46:38 +08:00
parent e18fa3cbda
commit 708ac844d4
1 changed files with 28 additions and 0 deletions

28
QUSTOJ/1726.c Normal file
View File

@ -0,0 +1,28 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int cnt=0;
int cash;
scanf("%d",&cash);
int amax=cash/5;
int bmax=cash/2;
int cmax=cash;
for(int a=1;a<=amax;a++)
{
for(int b=1;b<=bmax;b++)
{
for(int c=1;c<=cmax;c++)
{
if(5*a+2*b+c==cash)
{
cnt++;
}
}
}
}
printf("%d\n",cnt);
return 0;
}