結果
問題 | No.3021 データベースの練習 |
ユーザー | はむ吉🐹 |
提出日時 | 2017-03-31 23:11:34 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 470 ms / 5,000 ms |
コード長 | 231 bytes |
コンパイル時間 | 315 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,488 KB |
平均クエリ数 | 540.42 |
最終ジャッジ日時 | 2024-07-16 12:39:32 |
合計ジャッジ時間 | 4,653 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
27,488 KB |
testcase_01 | AC | 260 ms
27,232 KB |
testcase_02 | AC | 332 ms
27,104 KB |
testcase_03 | AC | 351 ms
27,240 KB |
testcase_04 | AC | 316 ms
27,104 KB |
testcase_05 | AC | 326 ms
26,856 KB |
testcase_06 | AC | 173 ms
27,096 KB |
testcase_07 | AC | 245 ms
26,856 KB |
testcase_08 | AC | 333 ms
27,368 KB |
testcase_09 | AC | 275 ms
27,368 KB |
testcase_10 | AC | 241 ms
27,360 KB |
testcase_11 | AC | 470 ms
26,976 KB |
ソースコード
import sys n = int(input()) for _ in range(n): xl, xh, yl, yh = (int(z) for z in input().split()) print("SELECT count(*) FROM point WHERE x>={} AND x<={} AND y>={} AND y<={};".format(xl, xh, yl, yh)) sys.stdout.flush()