結果
問題 |
No.2297 Best Grouping
|
ユーザー |
|
提出日時 | 2023-05-14 18:41:21 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 638 bytes |
コンパイル時間 | 1,577 ms |
コンパイル使用メモリ | 165,688 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-11-30 06:19:33 |
合計ジャッジ時間 | 49,126 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 OLE * 1 |
other | WA * 5 OLE * 15 |
ソースコード
/** * - Meet Brahmbhatt * - Hard work always pays off **/ #include"bits/stdc++.h" using namespace std; #ifdef MeetBrahmbhatt #include "debug.h" #else #define dbg(...) 72 #endif #define endl "\n" #define int long long const long long INF = 4e18; const int32_t M = 1e9 + 7; const int32_t MM = 998244353; void solve() { int n; cin >> n; if (n % 3 == 0) { cout << n / 3 << endl; } else { cout << (n / 3) + 1 << endl; } } signed main() { ios_base::sync_with_stdio(0); cin.tie(0); cout << fixed << setprecision(9); int tt = 1; cin >> tt; while (tt--) solve(); return 0; }