Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
75922 sh25_shenpy 202403-GESP-一级-找因数 C++ 通过 1 MS 252 KB 169 2025-12-12 20:23:05

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;++i){ if(n%i==0) cout<<i<<endl; } return 0;}


测评信息: