結果
| 問題 | No.2921 Seated in Classroom |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-12 16:16:49 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 565 bytes |
| 記録 | |
| コンパイル時間 | 3,186 ms |
| コンパイル使用メモリ | 243,092 KB |
| 実行使用メモリ | 13,696 KB |
| 最終ジャッジ日時 | 2024-10-12 16:17:04 |
| 合計ジャッジ時間 | 9,473 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 2 |
| other | TLE * 1 -- * 4 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define rep(i,n,k); for(ll i = k; i < (int)(n); i++)
#define rep1(i, n) for(ll i = 0; i < (n); ++i)
using ll = long long;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
int main() {
ll t;
cin>>t;
rep(i,t,0){
ll n,m;
cin>>n>>m;
ll k=max(m,n);
rep(j,k/4,1){
n-=4;
m-=4;
if(n<=0&&m>=0){
m+=n;
n=0;
}
if(n<=0&&m<=0){
cout<<j<<endl;
break;
}
}
}
}