結果

問題 No.3021 データベースの練習
ユーザー latte0119latte0119
提出日時 2017-03-31 23:39:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 430 ms / 5,000 ms
コード長 676 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 157,940 KB
実行使用メモリ 25,244 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 12:41:47
合計ジャッジ時間 5,891 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
24,592 KB
testcase_01 AC 221 ms
24,848 KB
testcase_02 AC 284 ms
24,848 KB
testcase_03 AC 314 ms
25,112 KB
testcase_04 AC 281 ms
25,232 KB
testcase_05 AC 290 ms
25,232 KB
testcase_06 AC 140 ms
24,848 KB
testcase_07 AC 215 ms
24,848 KB
testcase_08 AC 295 ms
24,976 KB
testcase_09 AC 235 ms
24,848 KB
testcase_10 AC 210 ms
24,976 KB
testcase_11 AC 430 ms
25,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define int long long

#define rep(i,n) for(int i=0;i<(n);i++)
#define pb push_back
#define all(v) (v).begin(),(v).end()
#define fi first
#define se second
typedef vector<int>vint;
typedef pair<int,int>pint;
typedef vector<pint>vpint;

template<typename A,typename B>inline void chmin(A &a,B b){if(a>b)a=b;}
template<typename A,typename B>inline void chmax(A &a,B b){if(a<b)a=b;}



signed main(){
    int q;cin>>q;
    while(q--){
        int x1,x2,y1,y2;
        cin>>x1>>x2>>y1>>y2;

        cout<<"SELECT count(*) FROM point WHERE "<<"x>="<<x1<<" AND x<="<<x2<<" AND y>="<<y1<<" AND y<="<<y2<<";"<<endl;
    }
    return 0;
}
0