| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 128784 | 刘国洋 | 整数猜想 | C++ | Accepted | 100 | 0 MS | 252 KB | 224 | 2024-01-26 09:39:54 |
#include<bits/stdc++.h> using namespace std ; int main() { int n; cin>>n; cout<<n<<" "; while (n>1){ if (n%2==0) {n=n/2; cout<<n<<" "; } else {n=n*3+1; cout<<n<<" "; } } return 0; }