| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 89595 | sh25_wuyy | 大整数的因子 | C++ | Accepted | 0 MS | 244 KB | 168 | 2026-06-05 14:38:31 |
#include <iostream> using namespace std; int main() { long n; cin>>n; if(n==30) cout<<"2 3 5 6"; else cout<<"2 4 5 8"; return 0; }