3296. 2333

clysto
#include <bits/stdc++.h>

using namespace std;

int main() {
    int T, n;
    cin >> T;
    while (T--) {
        cin >> n;
        cout << n / 3 << endl;
    }
    return 0;
}
你当前正在回复 博客/题目
存在问题!