1 条题解

  • 0
    @ 2024-8-4 9:44:32

    #include<bits/stdc++.h> using namespace std; int main() { int n,s=0,t=0; cin>>n; while(s<n){ t++; s+=3; if(s>=n) break; s--; t++; } cout<<t; return 0; }

    • 1

    信息

    ID
    1130
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    递交数
    82
    已通过
    33
    上传者