| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 89180 | sh25_zhangjiajia | 大整数的因子 | C++ | Accepted | 0 MS | 236 KB | 168 | 2026-05-22 15:48:08 |
#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; }