結果

問題 No.3021 データベースの練習
ユーザー zimphazimpha
提出日時 2017-03-31 23:11:26
言語 Python2
(2.7.18)
結果
AC  
実行時間 468 ms / 5,000 ms
コード長 239 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,244 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 12:39:14
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
25,244 KB
testcase_01 AC 237 ms
24,976 KB
testcase_02 AC 314 ms
24,592 KB
testcase_03 AC 342 ms
25,232 KB
testcase_04 AC 311 ms
24,592 KB
testcase_05 AC 318 ms
24,592 KB
testcase_06 AC 148 ms
24,848 KB
testcase_07 AC 230 ms
25,232 KB
testcase_08 AC 313 ms
25,232 KB
testcase_09 AC 247 ms
25,232 KB
testcase_10 AC 222 ms
24,964 KB
testcase_11 AC 468 ms
24,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

q = int(raw_input())
for i in xrange(q):
    x1, x2, y1, y2 = map(int, raw_input().split(' '))
    print 'SELECT count(*) FROM point WHERE x >= %d and x <= %d and y >= %d and y <= %d;' % (x1, x2, y1, y2)
    sys.stdout.flush()
0