OJ-Problems-Source/OpenJudge/ch0201_冰封/1978.c
2016-07-06 14:15:22 +08:00

68 lines
1.0 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 说实话,这题什么意思我都不知道
* 读完题我还以为我get了它的意思
* 写完提交了几次全部RE
* 现在不知所措
* 正确答案:
* */
#include<stdio.h>
int main() {
int p,e,i,d,j;
scanf("%d%d%d%d",&p,&e,&i,&d);
for(j=d+1;j<=21252;j++)
if((j-p)%23==0) break;
for(;j<=21252;j=j+23)
if((j-e)%28==0) break;
for(;j<=21252;j=j+23*28)
if((j-i)%33==0) break;
printf("%i",j-d);
return 0;
}
/*
* 我的代码:
#include <stdio.h>
int* min(int* a, int* b){
return *a > *b ? b : a;
}
int* max(int* a, int* b){
return *a < *b ? b : a;
}
int get( int p, int e, int i){
int t = 0;
int ___ = e * p;
do{
t = *max(&p, &e) % *min(&p, &e);
*max(&p, &e) = t;
}while(t);
e = ___ / *max(&p, &e);
___ = e * i;
do{
t = *max(&i, &e) % *min(&i, &e);
*max(&i, &e) = t;
}while(t);
e = ___ / *max(&i, &e);
return e;
}
int main(int argc, char** argv){
int m;
int p;
int e;
int i;
int s;
scanf("%i %i %i %i", &p, &e, &i, &m);
s = get(p, e, i);
while(m > 0){
m -= s;
}
printf("%i", -m);
return 0;
}
*/