結果
問題 | No.3021 データベースの練習 |
ユーザー | chocorusk |
提出日時 | 2020-10-18 15:42:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 444 ms / 5,000 ms |
コード長 | 782 bytes |
コンパイル時間 | 1,338 ms |
コンパイル使用メモリ | 126,076 KB |
実行使用メモリ | 25,232 KB |
平均クエリ数 | 540.42 |
最終ジャッジ日時 | 2024-07-17 07:11:11 |
合計ジャッジ時間 | 5,599 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
24,592 KB |
testcase_01 | AC | 224 ms
24,580 KB |
testcase_02 | AC | 292 ms
24,976 KB |
testcase_03 | AC | 308 ms
24,580 KB |
testcase_04 | AC | 291 ms
24,976 KB |
testcase_05 | AC | 306 ms
24,976 KB |
testcase_06 | AC | 142 ms
24,848 KB |
testcase_07 | AC | 220 ms
24,592 KB |
testcase_08 | AC | 305 ms
24,848 KB |
testcase_09 | AC | 244 ms
25,232 KB |
testcase_10 | AC | 210 ms
24,976 KB |
testcase_11 | AC | 444 ms
25,232 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; using ll=long long; typedef pair<int, int> P; int main() { int q; cin>>q; for(int i=0; i<q; i++){ int xl, xh, yl, yh; cin>>xl>>xh>>yl>>yh; cout<<"SELECT count(*) FROM point WHERE x>="<<xl<<" AND x<="<<xh<<" AND y>="<<yl<<" AND y<="<<yh<<";"<<endl; } return 0; }