結果

問題 No.3021 データベースの練習
ユーザー ei1333333ei1333333
提出日時 2017-03-31 23:38:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 409 ms / 5,000 ms
コード長 281 bytes
コンパイル時間 1,530 ms
コンパイル使用メモリ 158,676 KB
実行使用メモリ 25,488 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 12:41:41
合計ジャッジ時間 5,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
24,592 KB
testcase_01 AC 206 ms
24,976 KB
testcase_02 AC 262 ms
25,472 KB
testcase_03 AC 283 ms
25,488 KB
testcase_04 AC 265 ms
25,232 KB
testcase_05 AC 274 ms
24,976 KB
testcase_06 AC 126 ms
24,848 KB
testcase_07 AC 196 ms
24,592 KB
testcase_08 AC 270 ms
25,232 KB
testcase_09 AC 210 ms
24,592 KB
testcase_10 AC 190 ms
25,216 KB
testcase_11 AC 409 ms
25,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main()
{
  int M;
  cin >> M;
  while(M--) {
    int a, b, c, d;
    cin >> a >> b >> c >> d;
    printf("SELECT count(*) FROM point WHERE x >= %d AND x <= %d AND y >= %d AND y <= %d;\n", a, b, c, d);
    fflush(stdout);
  }


}

0