結果

問題 No.3021 データベースの練習
ユーザー くれちーくれちー
提出日時 2017-04-01 00:34:54
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 376 ms / 5,000 ms
コード長 818 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 25,360 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 12:43:35
合計ジャッジ時間 3,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
24,976 KB
testcase_01 AC 206 ms
24,592 KB
testcase_02 AC 274 ms
24,976 KB
testcase_03 AC 285 ms
24,592 KB
testcase_04 AC 259 ms
25,232 KB
testcase_05 AC 273 ms
25,232 KB
testcase_06 AC 121 ms
25,360 KB
testcase_07 AC 192 ms
25,232 KB
testcase_08 AC 270 ms
24,964 KB
testcase_09 AC 211 ms
24,976 KB
testcase_10 AC 185 ms
25,360 KB
testcase_11 AC 376 ms
25,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <math.h>
#define REP(i, n) for (ll i = 0; i < n; i++)
#define REP1(i, n) for (ll i = 1; i <= n; i++)
#define RREP(i, n) for (ll i = n - 1; i >= 0; i--)
#define RREP1(i, n) for (ll i = n; i >= 1; i--)
#define FOR(i, a, b, c) for (ll i = a; i <= b; i += c)
#define RFOR(i, a, b, c) for (ll i = a; i >= b; i -= c)
#define MAX(a, b) (a > b ? a : b)
#define MIN(a, b) (a < b ? a : b)
#define INF 1145141919
typedef long long ll;

int main() {
    int q;
    scanf("%d", &q);

    REP(i, q) {
        int xl, xh, yl, yh;
        scanf("%d %d %d %d", &xl, &xh, &yl, &yh);
        printf("SELECT COUNT(*) FROM point WHERE (x BETWEEN %d AND %d) AND (y BETWEEN %d AND %d);\n", xl, xh, yl, yh);
        fflush(stdout);
    }
    return 0;
}
0