| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 82420 | sh25_shenpy | 数对 | C++ | 通过 | 1 MS | 244 KB | 218 | 2026-01-11 21:24:14 |
#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<<" * "<<n/i<<" = "<<n<<endl; } } return 0; }