結果
問題 | No.3021 データベースの練習 |
ユーザー | anta |
提出日時 | 2017-03-31 22:26:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 846 bytes |
コンパイル時間 | 1,339 ms |
コンパイル使用メモリ | 166,776 KB |
実行使用メモリ | 103,156 KB |
最終ジャッジ日時 | 2024-07-16 12:32:18 |
合計ジャッジ時間 | 13,733 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i)) #define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i)) static const int INF = 0x3f3f3f3f; static const long long INFL = 0x3f3f3f3f3f3f3f3fLL; typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pair<int, int> > vpii; typedef long long ll; template<typename T, typename U> static void amin(T &x, U y) { if (y < x) x = y; } template<typename T, typename U> static void amax(T &x, U y) { if (x < y) x = y; } int main() { int q; while (~scanf("%d", &q)) { rep(i, q) { int A; int B; int C; int D; scanf("%d%d%d%d", &A, &B, &C, &D); printf("SELECT count(*) FROM point WHERE %d <= x AND x <= %d AND %d <= y AND y <= %d;\n", A, B, C, D); } } return 0; }