/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Time Exceeded ≥1092ms ≥328.0 KiB
#3 Time Exceeded ≥1095ms ≥516.0 KiB
#4 Time Exceeded ≥1096ms ≥492.0 KiB

Code

#include <bits/stdc++.h>
#define ll long long
#define endll '\n';
#define pb push_back
#define all(v) v.begin(), v.end()
using namespace std;


const int mod = 1e9 + 7, N = 1e6;
int rec(int x) {
    if(x < 0) return 1e5;
    if(x == 0) return 0;
    int ans = 1e9;
    ans = min(ans, rec(x - 2) + 1);
    ans = min(ans, rec(x - 3) + 1);
    return ans;
}
void solve()
{
 int n; cin >> n;
 cout << rec(n) << endll;
}

int32_t main()
{
  ios::sync_with_stdio(false);
  cin.tie(0);
  int t = 1;
//   cin >> t;
  while (t--) {
    solve();
}
 return 0;
}

Information

Submit By
Type
Submission
Problem
P1106 too easy or three easy
Contest
Brain Booster #6
Language
C++17 (G++ 13.2.0)
Submit At
2024-10-03 15:31:40
Judged At
2024-10-03 15:31:40
Judged By
Score
10
Total Time
≥1096ms
Peak Memory
≥540.0 KiB