2 条题解

  • 1
    @ 2024-9-8 9:49:06

    #include<bits/stdc++.h> using namespace std; int main() { int n,s=1; cin>>n; while(n!=1){ if(n%2==0){ n/=2; }else{ n=3*n+1; }s++; } cout<<s; return 0; }

    • 0
      @ 2024-3-10 17:24:04

      n=n*3+1;

      • 1

      信息

      ID
      924
      时间
      1000ms
      内存
      256MiB
      难度
      2
      标签
      递交数
      70
      已通过
      37
      上传者