1 solutions

  • 1
    @ 2023-10-5 20:59:03
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int n,r=0;
        cin>>n;
        while(n>0){
            n-=3;
            r+=1;
        }
        cout<<r<<endl;
    	return 0;
    }//遍历。
    
    • 1

    Information

    ID
    6
    Time
    1000ms
    Memory
    64MiB
    Difficulty
    10
    Tags
    # Submissions
    8
    Accepted
    4
    Uploaded By