結果
問題 | No.2921 Seated in Classroom |
ユーザー | may17 |
提出日時 | 2024-10-12 14:42:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 377 ms / 2,000 ms |
コード長 | 555 bytes |
コンパイル時間 | 2,027 ms |
コンパイル使用メモリ | 199,552 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-10-12 14:43:01 |
合計ジャッジ時間 | 4,528 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 317 ms
5,888 KB |
testcase_01 | AC | 186 ms
5,248 KB |
testcase_02 | AC | 138 ms
5,248 KB |
testcase_03 | AC | 377 ms
6,144 KB |
testcase_04 | AC | 312 ms
6,400 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> //#include<atcoder/all> using namespace std; //using namespace atcoder; using ll = long long; const ll mod = 1000000007; //const ll mod = 998244353; int dx[4] = { 0,1,0,-1 }, dy[4] = { -1,0,1,0 }; ll t, n[200009], m[200009]; int main() { cin >> t; for (int i = 1; i <= t; i++) { cin >> n[i] >> m[i]; } for (int i = 1; i <= t; i++) { ll x = (n[i]+3LL) / 4LL; ll sum = x * 8LL; if (sum - n[i] - m[i] >= 0)cout << x << endl; else { ll y = n[i] + m[i] - sum; x += ((y + 7LL) / 8LL); cout << x << endl; } } }