結果

問題 No.2921 Seated in Classroom
ユーザー ryusei111ryusei111
提出日時 2024-10-12 19:39:02
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 6,991 ms
コンパイル使用メモリ 275,448 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-10-12 19:39:13
合計ジャッジ時間 9,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
5,888 KB
testcase_01 AC 214 ms
5,248 KB
testcase_02 AC 155 ms
5,248 KB
testcase_03 AC 384 ms
6,016 KB
testcase_04 AC 356 ms
6,272 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(ll i=0;i<(ll)n;i++)
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define mod 998244353
#define dai 5000000000000000000LL
#define sho -dai
#define eps 1e-14
#define fi(x) cout<<fixed<<setprecision(x);
using ll=long long;
using un=unsigned long long;
using ld=long double;
using st=string;
using ch=char;
using bo=bool;
using P=pair<ll,ll>;
using T=tuple<ll,ll,ll>;
using vi=vector<ll>;
using vs=vector<st>;
using vc=vector<ch>;
using vb=vector<bo>;
using vp=vector<P>;
using sp=set<P>;
using ss=set<st>;
using si=set<ll>;
using vvi=vector<vi>;
using vvs=vector<vs>;
using vvb=vector<vb>;
using vvc=vector<vc>;
using vvp=vector<vp>;
using vsi=vector<set<ll>>;
const ll dx[4]={0,1,0,-1};
const ll dy[4]={1,0,-1,0};
const ll INF = 1e18;

int main(){
	ll n;
	cin>>n;
	vi a(n),b(n);
	rep(i,n){
		cin>>a[i]>>b[i];
		if(a[i]<b[i]){
			ll k=a[i]+b[i];
			if(k%8==0){
				cout<<k/8<<endl;
			}else{
				cout<<k/8+1<<endl;
			}
		}else{
			if(a[i]%4==0){
				cout<<a[i]/4<<endl;
			}else{
				cout<<a[i]/4+1<<endl;
			}
		}
	}
}
0