結果
| 問題 |
No.8021 データベースの練習
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-03-31 23:17:28 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 303 bytes |
| コンパイル時間 | 1,575 ms |
| コンパイル使用メモリ | 165,104 KB |
| 実行使用メモリ | 25,488 KB |
| 平均クエリ数 | 540.42 |
| 最終ジャッジ日時 | 2024-07-16 12:39:42 |
| 合計ジャッジ時間 | 4,264 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 11 |
ソースコード
#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(i, q) {
int a, b, c, d; scanf("%d%d%d%d", &a, &b, &c, &d);
printf("select count(((x between %d and %d) and (y between %d and %d)) or null) from point\n", a, b, c, d);
}
}