1 条题解

  • 0
    @ 2021-6-15 10:13:21

    C++ :

    #include<cmath>
    #include<iostream>
    using namespace std;
    int main()
    {
    	int i,t=0;
    	bool a[10];
    	for (i=0;i<10;++i) a[i]=true;
    	i=0;
    	for (int j=1;j<=1000;++j)
    	{
    		i=(i+j-1) %10;
    		a[i]=false;
    	}
    	for (i=0;i<10;i++)
    		if (a[i]) {
    			t++;
    			if (t==1) cout<<i;
    				else cout<<" "<<i;
    		}
    	cout<<endl;
    	return 0;    
    }
    
    
    • 1

    信息

    ID
    435
    时间
    1000ms
    内存
    128MiB
    难度
    10
    标签
    递交数
    1
    已通过
    1
    上传者