結果

問題 No.2921 Seated in Classroom
ユーザー たごころたごころ
提出日時 2024-10-12 15:08:22
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,285 bytes
コンパイル時間 1,148 ms
コンパイル使用メモリ 127,204 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 15:08:42
合計ジャッジ時間 3,062 ms
ジャッジサーバーID
(参考情報)
judge / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <stack>
#include <iomanip>
#include <limits>
#include <queue>
#include <map>
#include <set>
#include<algorithm>
#include<deque>
using namespace std;
#define rep(i, n) for (int i = 0;i < (n); ++i)
#define Yes cout << "Yes" << endl
#define No cout << "No" << endl
#define vi vector<int>
#define vvi vector<vector<int>>
#define vl vector<long long> 
#define vvl vector<vector<long long>>
#define vs vector<string>
#define vc vector<char>
#define vvc vector<vector<char>>
#define vb vector<bool>
#define vvb vector<vector<bool>> 
using ll = long long;
using P = pair<ll,ll>;
void chmin(ll &a,ll b){
    a = min(a,b);
}
void chmax(int &a,int b){
    a = max(a,b);
} 

const ll INF = 2e18;

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int t;
    cin >> t;
    rep(i,t){
        ll n,m;
        cin >> n >> m;
        ll mm = 0;ll mn = 0;
        if(m%4 == 0)mm = m/4;
        else mm = m/4+1;
        ll can = 4-m%4;
        if(m%4 == 0)can = 0;
        n -= can;
        if(n%4 == 0)mn = n/4;
        else mn = n/4+1;
        if(mn > mm){
            n -= mm*4;
            mn = mm;
            if(n%8 == 0)mn += n/8;
            else mn += n/8+1;
        }
        
        cout << max(mn,mm) << endl;
    } 
}
0