結果

問題 No.3021 データベースの練習
ユーザー 👑 rin204rin204
提出日時 2020-06-11 00:49:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 476 ms / 5,000 ms
コード長 208 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,488 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-17 03:49:07
合計ジャッジ時間 4,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
27,232 KB
testcase_01 AC 257 ms
27,104 KB
testcase_02 AC 333 ms
27,488 KB
testcase_03 AC 355 ms
27,360 KB
testcase_04 AC 330 ms
27,488 KB
testcase_05 AC 339 ms
26,976 KB
testcase_06 AC 162 ms
27,096 KB
testcase_07 AC 243 ms
26,856 KB
testcase_08 AC 335 ms
27,104 KB
testcase_09 AC 267 ms
27,352 KB
testcase_10 AC 242 ms
26,968 KB
testcase_11 AC 476 ms
27,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q = int(input())

for _ in range(q):
    a, b, c, d = map(int, input().split())
    ans = "SELECT count(*) FROM point WHERE {0} <= x AND x <= {1} AND {2} <= y AND y <= {3};".format(a, b, c, d)
    print(ans)
0