結果

問題 No.3021 データベースの練習
ユーザー 西尾西尾
提出日時 2018-08-21 13:37:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 387 ms / 5,000 ms
コード長 317 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 164,488 KB
実行使用メモリ 25,232 KB
平均クエリ数 1.00
最終ジャッジ日時 2024-07-16 16:00:12
合計ジャッジ時間 5,177 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
24,592 KB
testcase_01 AC 214 ms
24,976 KB
testcase_02 AC 274 ms
25,232 KB
testcase_03 AC 288 ms
24,848 KB
testcase_04 AC 271 ms
24,976 KB
testcase_05 AC 277 ms
25,232 KB
testcase_06 AC 124 ms
25,232 KB
testcase_07 AC 198 ms
25,232 KB
testcase_08 AC 275 ms
25,232 KB
testcase_09 AC 216 ms
24,592 KB
testcase_10 AC 193 ms
24,848 KB
testcase_11 AC 387 ms
24,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
int i;
int q;
int xl, xh, yl, yh;

	cin >> q;

	for( i = 0; i < q; i++ )
	{
		cin >> xl >> xh >> yl >> yh;

		printf(
				"SELECT count( * ) FROM point WHERE ( x BETWEEN %d AND %d ) "
				"AND ( y BETWEEN %d AND %d );",
				xl, xh, yl, yh );
	}

	return 0;
}
0