結果

問題 No.3021 データベースの練習
ユーザー furafura
提出日時 2020-04-13 15:10:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 439 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 199,900 KB
実行使用メモリ 25,232 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-17 03:25:49
合計ジャッジ時間 6,446 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
24,848 KB
testcase_01 AC 225 ms
25,232 KB
testcase_02 AC 295 ms
24,976 KB
testcase_03 AC 315 ms
24,848 KB
testcase_04 AC 286 ms
25,232 KB
testcase_05 AC 307 ms
24,848 KB
testcase_06 AC 139 ms
24,592 KB
testcase_07 AC 213 ms
25,232 KB
testcase_08 AC 298 ms
24,592 KB
testcase_09 AC 241 ms
24,848 KB
testcase_10 AC 209 ms
24,848 KB
testcase_11 AC 439 ms
24,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int q; scanf("%d",&q);
	rep(_,q){
		int x1,x2,y1,y2; scanf("%d%d%d%d",&x1,&x2,&y1,&y2);
		printf("SELECT count(*) FROM point WHERE %d<=x AND x<=%d AND %d<=y AND y<=%d;\n",x1,x2,y1,y2);
		fflush(stdout);
	}
	return 0;
}
0