4 条题解

  • 2
    @ 2026-7-20 15:48:07
    # include <bits/stdc++.h>
    
    using namespace std;
    unsigned long long n;
    int main(){
    	cin>>n;
    	while(n){
    		cout<<n%10<<" ";
    		n/=10;
    	}
    	return 0;
    }
    

    信息

    ID
    3492
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    47
    已通过
    21
    上传者