結果
問題 | No.2921 Seated in Classroom |
ユーザー | アヤト |
提出日時 | 2024-10-12 15:09:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 554 bytes |
コンパイル時間 | 1,601 ms |
コンパイル使用メモリ | 166,724 KB |
実行使用メモリ | 17,088 KB |
最終ジャッジ日時 | 2024-10-12 15:09:28 |
合計ジャッジ時間 | 8,017 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
ソースコード
#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; rep(j,100000000,1){ n-=4; m-=4; if(n<=0&&m>=0){ m+=n; n=0; } if(n<=0&&m<=0){ cout<<j<<endl; break; } } } }