結果

問題 No.3021 データベースの練習
ユーザー nanaenanae
提出日時 2017-04-12 16:45:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 480 ms / 5,000 ms
コード長 360 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,488 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 12:48:40
合計ジャッジ時間 4,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
27,104 KB
testcase_01 AC 265 ms
27,360 KB
testcase_02 AC 348 ms
27,360 KB
testcase_03 AC 355 ms
26,984 KB
testcase_04 AC 336 ms
27,232 KB
testcase_05 AC 344 ms
26,928 KB
testcase_06 AC 171 ms
27,488 KB
testcase_07 AC 250 ms
27,104 KB
testcase_08 AC 351 ms
26,976 KB
testcase_09 AC 281 ms
26,848 KB
testcase_10 AC 253 ms
26,984 KB
testcase_11 AC 480 ms
26,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve():
    q = int(sys.stdin.readline())

    for i in range(q):
        x1, x2, y1, y2 = map(int, sys.stdin.readline().split())

        query = 'SELECT count(*) FROM point WHERE '
        query += '{} <= x AND x <= {} AND {} <= y AND y <= {};'.format(x1, x2, y1, y2)

        print(query, flush=True)

if __name__ == '__main__':
    solve()
0