結果

問題 No.3021 データベースの練習
ユーザー しらっ亭しらっ亭
提出日時 2018-03-21 03:13:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 425 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,488 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 15:49:04
合計ジャッジ時間 4,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
27,488 KB
testcase_01 AC 242 ms
27,488 KB
testcase_02 AC 315 ms
27,104 KB
testcase_03 AC 326 ms
27,160 KB
testcase_04 AC 312 ms
27,104 KB
testcase_05 AC 307 ms
27,360 KB
testcase_06 AC 153 ms
27,360 KB
testcase_07 AC 227 ms
27,104 KB
testcase_08 AC 311 ms
27,376 KB
testcase_09 AC 246 ms
26,856 KB
testcase_10 AC 218 ms
27,360 KB
testcase_11 AC 425 ms
27,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	l, r, t, b = map(int,input().split())
	print(f'SELECT count(1) FROM point WHERE x BETWEEN {l} AND {r} AND y BETWEEN {t} AND {b};', flush=True)
0