output
stringlengths
52
181k
instruction
stringlengths
296
182k
#include <bits/stdc++.h> using namespace std; int main() { long int t; cin >> t; while (t--) { long int n, ans; cin >> n; ans = n / 7; if (n % 7 != 0) ans++; cout << ans << endl; } return 0; }
### Prompt Your challenge is to write a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> int main() { int i, n, a; scanf("%d", &n); for (i = 1; i <= n; i++) { scanf("%d", &a); printf("%d\n", a / 2); } return 0; }
### Prompt Please provide a cpp coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> int main() { int a, b, c, d; scanf("%d", &a); for (b = 0; b < a; b++) { scanf("%d", &c); printf("%d\n", c / 2); } }
### Prompt Please formulate a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int T, x; int main() { cin >> T; while (T--) { cin >> x; int res = x / 2; cout << res << "\n"; } }
### Prompt Construct a Cpp code solution to the problem outlined: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of...
#include <bits/stdc++.h> using namespace std; int main() { int T, x; cin >> T; for (int t = 0; t < T; t++) { cin >> x; cout << x / 2 << endl; } return 0; }
### Prompt Generate a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; void input(vector<long long>& v, long long n) { for (long long i = 0; i < (long long)(n); i++) { long long in; cin >> in; v.push_back(in); } } void output(vector<long long> v) { for (long long i = 0; i < (long long)(v.size()); i++) cout << v[i] << " "; } i...
### Prompt Your task is to create a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; while (t--) { int n; cin >> n; int ans = (n / 7) + ((n % 7) ? 1 : 0); cout << ans << endl; } return 0; }
### Prompt Create a solution in cpp for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; while (t--) { int n; cin >> n; int val = n / 7; if (n % 7 != 0) val++; cout << val << "\n"; } }
### Prompt Please formulate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { long long int n; cin >> n; while (n--) { long long int dice, d; cin >> dice; if (dice == 2 || dice == 3 || dice == 4 || dice == 5 || dice == 6 || dice == 7) { d = 1; } else { if (dice % 5 == 0) { d = dice / 5; ...
### Prompt Your challenge is to write a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; int a[200], counter[200] = {0}; int supp[6] = {2, 3, 4, 5, 6, 7}; int main() { int t; scanf("%d", &t); for (int i = 0; i < t; i++) cin >> a[i]; for (int i = 0; i < t; i++) { for (int j = 5; j >= 0; j--) { if (a[i] % supp[j] == 2) { counter[i] += ((...
### Prompt Develop a solution in CPP to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> int main() { int a = 0, x = 0; scanf("%d", &a); for (int i = 0; i < a; i++) { scanf("%d", &x); if (x % 7 == 0) { printf("%d\n", x / 7); } else { printf("%d\n", (x / 7) + 1); } } return 0; }
### Prompt Develop a solution in cpp to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; void solve(int tc) { long long int n; scanf("%lld", &n); printf("%lld", ((n) % (7LL) == 0 ? (n) / (7LL) : ((n) / (7LL)) + 1)); printf("\n"); } int main() { int tc; scanf("%d", &tc); for (__typeof(tc + 1) t = (1) - ((1) > (tc + 1)); t != (tc + 1) - ((1) ...
### Prompt Please create a solution in CPP to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int x, t; cin >> t; for (int i = 0; i < t; i++) { cin >> x; cout << x / 2 << endl; } return 0; }
### Prompt Please formulate a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int T, n; int main() { scanf("%d", &T); while (T--) { scanf("%d", &n); int resp = (n / 7) + (n % 7 == 0 ? 0 : 1); printf("%d\n", resp); } return 0; }
### Prompt Develop a solution in CPP to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int t; int n; signed main() { cin >> t; while (t--) { cin >> n; cout << ((n + 6) / 7) << endl; } }
### Prompt Your challenge is to write a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; int dx[] = {-1, 1, 0, 0, -1, 1, -1, 1}; int dy[] = {0, 0, -1, 1, -1, 1, 1, -1}; const int oo = 2e9; const int N = 1e6; int t[1000000]; int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); ; long long int n, ans = 0, x; cin >> n; while (n > 0...
### Prompt In CPP, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> int main() { int a, b, c, d, e, f, g, h; scanf("%d", &a); while (a--) { scanf("%d", &b); if (b >= 2 && b <= 7) { printf("1\n"); } else if (b == 43) { printf("8\n"); } else if (b % 7 == 0) { printf("%d\n", b / 7); } else if (b % 7 == 1) { printf(...
### Prompt In CPP, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; for (int i = 0; i < n; i++) { int a; cin >> a; cout << a / 2 << endl; } }
### Prompt Please formulate a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; while (t--) { int k; cin >> k; cout << ceil(k / 2) << endl; } }
### Prompt Create a solution in CPP for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int o[101]; int main() { int t; cin >> t; for (int i = 0; i < t; i++) { int e; cin >> e; if (e % 7 == 0) { o[i] = e / 7; } else { o[i] = e / 7 + 1; } } for (int i = 0; i < t; i++) { cout << o[i] << endl; } return 0; }
### Prompt Generate a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(0); long long q; cin >> q; while (q--) { long long x; cin >> x; cout << (x >> 1) << '\n'; } return 0; }
### Prompt Please provide a CPP coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> int main(void) { int i, t, n; scanf("%d", &t); while (t--) { scanf("%d", &n); printf("%d\n", (n - 1) / 7 + 1); } return 0; }
### Prompt In CPP, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> using namespace std; long long n, y, x; int main() { cin >> n; for (int i = 0; i < n; i++) { cin >> x; cout << x / 2 << "\n"; } return 0; }
### Prompt Please formulate a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; while (t--) { int value, res = 0; cin >> value; for (int i = 7; i >= 2; i--) { res = res + (value / i); value = value % i; } if (value > 0) { res++; } cout << res << endl; } }
### Prompt Your task is to create a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just...
#include <bits/stdc++.h> #pragma GCC optimization("O3") using namespace std; const long long inf = INT_MAX; const long long inf2 = 1e18; const long long minf = -1 * 1e9; const long long MAX = 1e5 + 5; const long long MOD = 1e9 + 7; const double pi = acos(-1.0); const double EPS = 1e-9; void init(int precision) { ios_...
### Prompt Your task is to create a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just...
#include <bits/stdc++.h> using namespace std; int main() { int n, t, ans; cin >> t; for (int i = 0; i < t; i++) { cin >> n; if (n % 7 == 0) { ans = n / 7; cout << ans << '\n'; } else { ans = (n / 7) + 1; cout << ans << '\n'; } } return 0; }
### Prompt Create a solution in Cpp for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> int main() { long long T; scanf("%lld", &T); while (T--) { long long num; scanf("%lld", &num); if (num < 2) printf("0\n"); else if (num >= 2 && num <= 7) printf("1\n"); else { long long sum = num / 7; num %= 7; if (num == 0) printf...
### Prompt Please provide a CPP coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> int main() { int x, k, i, sum; scanf("%d", &k); while (k--) { sum = 0; scanf("%d", &x); sum = x / 7; if ((x % 7) != 0) sum++; printf("%d\n", sum); } return 0; }
### Prompt In CPP, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> using namespace std; int ans; bool ex = false; void count(int x) { if (x == 0) { ex = true; return; } if (x == 1) { return; } for (int i = min(x, 7); i >= 2; i--) { ans++; count(x - i); if (ex) return; ans--; } } int main() { int t; cin >> t; int x;...
### Prompt Create a solution in CPP for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int main() { long long t, rr, i, k; scanf("%lld", &t); for (rr = 0; rr < t; rr++) { scanf("%lld", &k); printf("%lld\n", k / 2); } }
### Prompt Create a solution in cpp for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int tellMoves(int m[], int a) { int sum = 0; for (int i = 0; i < 6; i++) { if (a / m[i] == 0) { sum = a / m[i]; } } if (sum == 0) { for (int i = 0; i < 6; i++) if (a >= m[i]) { sum += a / m[i]; a = a % m[i]; } } retu...
### Prompt Please provide a cpp coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; for (int i = 0; i < t; i++) { int x; cin >> x; cout << x / 2 << endl; } }
### Prompt Please create a solution in Cpp to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; const int maxn = 100; int c[maxn][maxn]; int main(int argc, char const *argv[]) { int t; scanf("%d", &t); while (t--) { int x; scanf("%d", &x); printf("%d\n", x / 2); } return 0; }
### Prompt Generate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; while (t--) { int n; cin >> n; if (n % 7 == 0) cout << n / 7 << endl; else cout << n / 7 + 1 << endl; } }
### Prompt Please formulate a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { long long i, j, k, l, n, m, a, b; cin >> n; while (n--) { cin >> a; long long ans = 0; for (i = 7; i >= 0; i--) { m = a % i; if (m != 1) { ans = a / i; if (m != 0) ans++; break; } } cout << ans...
### Prompt Please provide a cpp coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; const int N = 1000 + 7, M = 998244353; long long n, ans, l, m, k, r, a[N], a1, a2, a3, a4; string s; vector<int> v; pair<int, int> p[N]; int main() { cin >> n; for (int i = 1; i <= n; i++) { cin >> k; if (k % 2) { k -= 3; cout << 1 + k / 2 << endl; ...
### Prompt Your challenge is to write a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> const long long int mod = 1000000007; const long long int AM = 2e5 + 5; using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); ; long long int t; cin >> t; while (t--) { long long int n; cin >> n; if (n % 2 == 0) cout << n / 2 << '\n'; ...
### Prompt Create a solution in CPP for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; const long long mod = 1e9 + 7; int main() { long long t = 1; cin >> t; while (t--) { int n; cin >> n; if (n % 6) cout << n / 6 + 1; else cout << n / 6; cout << endl; } return 0; }
### Prompt Please create a solution in Cpp to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int t, n; cin >> t; while (t--) { cin >> n; int ans; ans = n / 7; if (n % 7) ++ans; cout << ans << endl; } return 0; }
### Prompt In cpp, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> using namespace std; int main() { int t, a; cin >> t; while (t--) { cin >> a; cout << a / 2 << endl; } return 0; }
### Prompt Please provide a cpp coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); int main() { ios::sync_with_stdio(0); cin.tie(0); int q; std::cin >> q; while (q--) { int n; std::cin >> n; std::cout << ((n + 6) / 7) << '\n'; } return 0; }
### Prompt Please formulate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; void solve() { int n; cin >> n; cout << (n >> 1) << endl; } int main() { ios_base::sync_with_stdio(false); cin.tie(0); int T; cin >> T; while (T--) solve(); }
### Prompt Please provide a Cpp coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int q, c = 0, n, s = 0; cin >> q; for (int i = 0; i < q; i++) { c = 0; s = 0; cin >> n; if (n <= 6) { cout << 1 << endl; continue; } int a = n / 6; for (int j = 0; j < a...
### Prompt Create a solution in Cpp for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int main() { long long int t; cin >> t; int x; for (int i = 1; i <= t; i++) { cin >> x; cout << x / 5 + 1; cout << endl; } return 0; }
### Prompt Please formulate a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int x, n, z; cin >> n; for (int i = 0; i < n; i++) { cin >> x; if (x % 2 == 0) { z = x / 2; cout << z << endl; } else { x = x - 3; z = x / 2; z++; cout << z << endl; } } return 0; }
### Prompt Generate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; int main() { int i, j, t; scanf("%d", &t); while (t--) { int n; scanf("%d", &n); int ans = 0; while (n) { if (n <= 7) { n = 0; } else { if (n == 8) { n -= 5; } else n -= 7; } ans++; ...
### Prompt In Cpp, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); ; int T; cin >> T; while (T--) { int N; cin >> N; cout << N / 2 << endl; } return 0; }
### Prompt Please create a solution in CPP to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n; for (int i = 0; i < n; i++) { cin >> m; cout << (m / 5) + 1 << endl; } return 0; }
### Prompt Please formulate a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> const int maxn = 1010; using namespace std; int main() { int t; cin >> t; while (t--) { int n; cin >> n; int ans = n / 7; cout << ans + 1 << endl; } return 0; }
### Prompt Please formulate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; long long n, k; int main() { cin >> n; for (int i = 1; i <= n; ++i) { cin >> k; long long to = 0; long long x = 2; long long ans = 0; while (to != k) { if (x >= 8) { break; } if (to + x <= k) { to += x; ans++...
### Prompt Generate a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int array[n]; for (int i = 0; i < n; i++) { cin >> array[i]; } int temp, son = 0; temp = 2; for (int i = 0; i < n; i++) { while (array[i] >= 0 && temp <= 7) { if (array[i] - temp >= 0) { son++; arra...
### Prompt Develop a solution in Cpp to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; ifstream fin("input.txt"); ofstream fout("output.txt"); bool isPrime(long long int x) { if (x <= 4 || x % 2 == 0 || x % 3 == 0) return x == 2 || x == 3; for (int i = 5; i * i <= x; i += 6) if (x % i == 0 || x % (i + 2) == 0) return 0; return 1; } int NumDigits(int...
### Prompt Your challenge is to write a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int x, l; int cnt = 0; for (int i = 0; i < n; i++) { cnt = 0; cin >> x; if (x % 7 != 0) { cnt++; } x /= 7; cout << x + cnt << endl; } return 0; }
### Prompt Generate a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; bool cmp_pair_F_2(pair<int, int> x, pair<int, int> y) { return x.first > y.first; } bool cmp_pair_S_2(pair<int, int> x, pair<int, int> y) { return x.second > y.second; } bool cmp_pair_S_1(pair<int, int> x, pair<int, int> y) { return x.second < y.second; } bool cmp(int...
### Prompt In cpp, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> using namespace std; int32_t main() { ios_base::sync_with_stdio(false); cin.tie(NULL); long long t; cin >> t; while (t--) { long long a; cin >> a; long long ans = a / 7; if (a % 7 != 0) ans++; cout << ans << endl; } return 0; }
### Prompt Create a solution in CPP for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int time_rolls[500005]; void prepare() { for (int i = 1; i <= 100; i++) time_rolls[i] = (int)1e9; for (int i = 1; i <= 100; i++) { for (int j = 2; j <= 7; j++) if (i >= j) time_rolls[i] = min(time_rolls[i], time_rolls[i - j] + 1); } } void solve() { int sp...
### Prompt Create a solution in Cpp for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; int n; int count = 0; while (t--) { cin >> n; count = (n / 7) + 1; cout << count << endl; count = 0; } return 0; }
### Prompt Your challenge is to write a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; int t, sol, x; int main() { ios::sync_with_stdio(false); cin >> t; while (t--) { cin >> x; sol = 0; while (x > 4) { x -= 2; ++sol; } ++sol; cout << sol << '\n'; } return 0; }
### Prompt In CPP, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> int main() { int32_t num_tests; std::cin >> num_tests; for (int32_t t = 0; t < num_tests; t++) { int32_t n; std::cin >> n; std::cout << n / 2 << "\n"; } return 0; }
### Prompt Your task is to create a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just...
#include <bits/stdc++.h> using namespace std; int main() { int t, x; cin >> t; while (t--) { cin >> x; cout << (x / 7) + 1 << endl; } return 0; }
### Prompt In cpp, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> int main() { int q; scanf("%d", &q); while (q--) { int n; scanf("%d", &n); int ch = n / 7; ch *= 2; ch += (n % 7 ? 1 : 0); printf("%d\n", ch); } return 0; }
### Prompt Construct a cpp code solution to the problem outlined: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of...
#include <bits/stdc++.h> using namespace std; vector<long long> adj[400005], prime(15000002, 0), fact(1000005, 1), v; long long mM(long long a, long long b, long long mod) { long long res = 0; a %= mod; while (b) { if (b & 1) res = (res + a) % mod; a = (2 * a) % mod; b >>= 1; } return res; } long ...
### Prompt Please provide a cpp coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; int a; while (t--) { int ans = 0; cin >> a; if (a >= 7) { ans += a / 7; a %= 7; } if (a > 0) ans++; cout << ans << "\n"; } return 0; }
### Prompt Construct a cpp code solution to the problem outlined: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of...
#include <bits/stdc++.h> using namespace std; int main() { int t, x, i; cin >> t; for (i = 0; i < t; i++) { cin >> x; if (x % 7 == 0) { cout << x / 7 << endl; } else { cout << (x / 7) + 1 << endl; } } }
### Prompt Generate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; while (t--) { int x; cin >> x; cout << x / 2 << endl; } return 0; }
### Prompt Your task is to create a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just...
#include <bits/stdc++.h> using namespace std; int a[1000]; int main() { int t, x; cin >> t; for (int i = 0; i < t; i++) { cin >> x; cout << (int)x / 2 << endl; } return 0; }
### Prompt In CPP, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> int main(int argc, char **argv) { int a, x; scanf("%d", &a); for (int i = 0; i < a; i++) { scanf("%d", &x); printf("%d\n", (x % 7) ? (x / 7 + 1) : (x / 7)); } return 0; }
### Prompt Your challenge is to write a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> int main() { int i, j, k, l, m, n; scanf("%d", &n); for (i = 0; i < n; i++) { scanf("%d", &k); printf("%d\n", k / 2); } return 0; }
### Prompt Create a solution in cpp for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); long long t, x; scanf("%lld", &t); while (t--) { scanf("%lld", &x); printf("%lld ", x / 7 + 1); printf("\n"); } return 0; }
### Prompt Create a solution in cpp for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int read() { int x = 0, w = 1; char ch = 0; while (ch < '0' || ch > '9') { if (ch == '-') w = -1; ch = getchar(); } while (ch <= '9' && ch >= '0') { x = (x << 1) + (x << 3) + ch - '0'; ch = getchar(); } return x * w; } int main() { int T = re...
### Prompt Please formulate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; while (t--) { int n; cin >> n; int ans = 0; ans = n / 7; if (n % 7) ans++; cout << ans << endl; } return 0; }
### Prompt Generate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; inline int readint() { int rt = 0, sign = 1; char ch = getchar(); while (ch < '0' || ch > '9') { if (ch == '-') sign = -1; ch = getchar(); } while (ch >= '0' && ch <= '9') { rt = (rt << 3) + (rt << 1) + (ch & 15); ch = getchar(); } return rt * ...
### Prompt Construct a cpp code solution to the problem outlined: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of...
#include <bits/stdc++.h> using namespace std; int main() { int t, x; cin >> t; for (int i = 0; i < t; i++) { cin >> x; cout << x / 2 << endl; } return 0; }
### Prompt Please formulate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int t, n; cin >> t; while (t--) { cin >> n; int sum = 0, x = 7; while (x >= 2) { if (n >= x) { if (n % x != 1) { sum += n / x; n = n % x; } } x--; } cout << sum << endl; } }
### Prompt Construct a CPP code solution to the problem outlined: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of...
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); long long int i, j, k, l, n, t; cin >> t; while (t--) { cin >> n; long long int ans = 0; if (n % 2 == 0) ans = n / 2; else { n = n - 3; ans = n / 2 + 1; ...
### Prompt Please formulate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; long long ans; long long n; while (t--) { ans = 0; cin >> n; int i = 7; if (n % 7 == 1) { i--; } for (; i >= 2; i--) { ans += n / i; n = n % i; } cout << ans << endl; } }
### Prompt Your task is to create a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just...
#include <bits/stdc++.h> int main() { int t; scanf("%d", &t); for (int x = 0; x < t; x++) { int points; scanf("%d", &points); if (points % 7 == 0) { printf("%d\n", points / 7); } else { printf("%d\n", (points / 7) + 1); } } return 0; }
### Prompt Your task is to create a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just...
#include <bits/stdc++.h> int main() { int n, i, j, t; scanf("%d", &t); for (i = 0; i < t; i++) { scanf("%d", &n); if (n % 7 == 0) { printf("%d\n", n / 7); } else { printf("%d\n", n / 7 + 1); } } return 0; }
### Prompt Develop a solution in CPP to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { cin.tie(0); ios_base::sync_with_stdio(false); int t; cin >> t; while (t--) { int x; cin >> x; cout << x / 2 << endl; } }
### Prompt Please provide a CPP coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; int main() { int T; cin >> T; for (int t = 1; t <= T; t++) { int k; cin >> k; cout << ceil(k / 7.0) << endl; } }
### Prompt Please create a solution in cpp to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> int main() { int i, x, y; scanf("%d", &x); for (i = 0; i < x; i++) { scanf("%d", &y); printf("%d\n", (y % 7) ? (y / 7 + 1) : (y / 7)); } return 0; }
### Prompt Construct a CPP code solution to the problem outlined: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of...
#include <bits/stdc++.h> using namespace std; int solve(int a) { vector<int> values = {7, 5, 3}; if (a == 2) return 1; if (a % 2 == 1) { for (auto i : values) if (a >= i) { a -= i; break; } return (a != 0) ? 1 + a / 2 : 1; } return a / 2; } int main() { cin.tie(0); cin....
### Prompt In CPP, your task is to solve the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of n...
#include <bits/stdc++.h> using namespace std; long long int power(long long int x, long long int y) { if (y == 0) return 1; else if (y % 2 == 0) return power(x, y / 2) * power(x, y / 2); else return x * power(x, y / 2) * power(x, y / 2); } int main() { ios_base::sync_with_stdio(false); cin.tie(NUL...
### Prompt Please provide a Cpp coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> int main() { int a, x; scanf("%d", &a); for (int i = 0; i < a; i++) { scanf("%d", &x); printf("%d\n", (x % 7) ? (x / 7 + 1) : (x / 7)); } return 0; }
### Prompt Develop a solution in CPP to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; using ll = long long; using ch = char; string a; int main() { int t; cin >> t; while (t--) { int x; cin >> x; if (x < 8) cout << "1" << endl; else { if (x % 2 == 0) cout << x / 2 << endl; else cout << 1 + (x - 3) / 2 <...
### Prompt Please formulate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> int main(void) { int t; scanf("%d", &t); while (t--) { int n; scanf("%d", &n); if (n % 7 == 0) { printf("%d\n", n / 7); } else { printf("%d\n", n / 7 + 1); } } }
### Prompt Generate a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; while (n--) { int x; cin >> x; cout << x / 2 << '\n'; } }
### Prompt Please create a solution in Cpp to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int tc, n, i, j, k, l; cin >> tc; while (tc--) { cin >> n; if (n == 2 || n == 3) cout << 1 << endl; else cout << n / 7 + 2 << endl; } }
### Prompt Generate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; int main() { int n, k; cin >> n; for (int i = 0; i < n; i++) { cin >> k; cout << k / 2 << endl; } }
### Prompt Create a solution in CPP for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int main() { int n, x; cin >> n; for (int i = 1; i <= n; i++) { cin >> x; cout << x / 2 << endl; } for (int i = 1; i <= 100; i++) cout << '\n'; return 0; }
### Prompt Develop a solution in CPP to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int T, n; inline int read() { int ch = getchar(), rtn = 0; while (!isdigit(ch)) ch = getchar(); while (isdigit(ch)) rtn = rtn * 10 + ch - '0', ch = getchar(); return rtn; } int main() { for (T = read(); T; --T) printf("%d\n", read() / 7 + 1); return 0; }
### Prompt Generate a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> int main() { int tests; std::cin >> tests; for (int i = 0; i < tests; ++i) { int r; std::cin >> r; std::cout << r / 7 + 1 << std::endl; } return 0; }
### Prompt Construct a cpp code solution to the problem outlined: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of...
#include <bits/stdc++.h> using namespace std; int main() { long long int i, j, t, x; cin >> t; for (i = 0; i < t; i++) { cin >> x; long long int k = x / 2; if (x % 2 == 1) k = (x - 3) / 2 + 1; cout << k << endl; } return 0; }
### Prompt Please formulate a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; long long int M = 1e9 + 7; long long int n, k, m; long long int z, q, u, a1, l, r, ax, cx, ay, by, cy, ql, qr, d, x, y; long long int w[300007]; vector<pair<long long int, long long int> > v[400000]; map<long long int, long long int> dp; long long int ma = 0; long long int ...
### Prompt Generate a Cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; int main() { int t, n; scanf("%d", &t); while (t--) { scanf("%d", &n); printf("%d\n", n / 2); } return 0; }
### Prompt Generate a cpp solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of numb...
#include <bits/stdc++.h> using namespace std; int t, n; int main() { ios_base::sync_with_stdio(0); cin.tie(NULL); cin >> t; while (t--) { cin >> n; if (n % 2) cout << 1 + (n - 3) / 2 << endl; else cout << n / 2 << endl; } return 0; }
### Prompt Please provide a cpp coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> using namespace std; int main() { long long n; cin >> n; for (int i = 0; i < n; i++) { long long a; cin >> a; cout << a / 7 + 1 << endl; } return 0; }
### Prompt Please create a solution in CPP to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum...
#include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; while (t--) { int n; cin >> n; cout << n / 2 << endl; } }
### Prompt Please provide a Cpp coded solution to the problem described below: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is ...
#include <bits/stdc++.h> int main() { int ntc, angka; scanf("%d", &ntc); for (int tc = 1; tc <= ntc; tc++) { scanf("%d", &angka); int sum = 0; int count = 0; while (sum < angka) { sum += 6; count++; if (sum >= angka) { printf("%d\n", count); break; } } ...
### Prompt Create a solution in Cpp for the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just a sum of nu...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(0); int t; cin >> t; vector<int> a; for (int i = 0; i < (t); i++) { int e; cin >> e; a.push_back(e); } for (int i = 0; i < (t); i++) { cout << a[i] / 2 << endl; } return 0; }
### Prompt Your task is to create a CPP solution to the following problem: Mishka got a six-faced dice. It has integer numbers from 2 to 7 written on its faces (all numbers on faces are different, so this is an almost usual dice). Mishka wants to get exactly x points by rolling his dice. The number of points is just...