結果
問題 | No.3021 データベースの練習 |
ユーザー | どらら |
提出日時 | 2017-03-31 23:47:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 392 ms / 5,000 ms |
コード長 | 554 bytes |
コンパイル時間 | 1,436 ms |
コンパイル使用メモリ | 167,076 KB |
実行使用メモリ | 25,232 KB |
平均クエリ数 | 540.42 |
最終ジャッジ日時 | 2024-07-16 12:42:18 |
合計ジャッジ時間 | 5,198 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 93 ms
24,592 KB |
testcase_01 | AC | 203 ms
24,976 KB |
testcase_02 | AC | 269 ms
25,232 KB |
testcase_03 | AC | 280 ms
24,848 KB |
testcase_04 | AC | 261 ms
25,232 KB |
testcase_05 | AC | 271 ms
25,232 KB |
testcase_06 | AC | 129 ms
25,232 KB |
testcase_07 | AC | 198 ms
24,592 KB |
testcase_08 | AC | 272 ms
24,592 KB |
testcase_09 | AC | 214 ms
25,232 KB |
testcase_10 | AC | 191 ms
24,592 KB |
testcase_11 | AC | 392 ms
24,976 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; int main(){ int q; cin >> q; rep(i,q){ 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; }