美文网首页
CodeFoeces-681B

CodeFoeces-681B

作者: ss5smi | 来源:发表于2018-02-28 00:29 被阅读0次

    题目

    原题链接:B. Economy Game

    题意

    给出数字n,问能否由任意个1234567,,13456和1234组成。

    代码

    #include<bits/stdc++.h>
    using namespace std;
    int main() {
        int n,a=1234567,b=123456,c=1234;
        cin>>n;
        for(int i=0;;i++){
            if(i*a>n) break;
            for(int j=0;;j++){
                if(i*a+j*b>n) break;
                for(int k=0;;k++){
                    if((n-(i*a)-(j*b))%c!=0) break;
                    if(i*a+j*b+k*c==n) {printf("YES\n"); return 0;} 
                }
            }
        }
        printf("NO\n");
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:CodeFoeces-681B

          本文链接:https://www.haomeiwen.com/subject/xydmxftx.html