結果

問題 No.3021 データベースの練習
ユーザー ixmelixmel
提出日時 2017-04-01 00:01:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 462 ms / 5,000 ms
コード長 159 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,488 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 12:42:34
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
27,360 KB
testcase_01 AC 256 ms
27,384 KB
testcase_02 AC 319 ms
27,368 KB
testcase_03 AC 338 ms
27,360 KB
testcase_04 AC 323 ms
27,104 KB
testcase_05 AC 340 ms
27,232 KB
testcase_06 AC 171 ms
27,488 KB
testcase_07 AC 250 ms
27,232 KB
testcase_08 AC 343 ms
27,232 KB
testcase_09 AC 262 ms
27,104 KB
testcase_10 AC 243 ms
27,360 KB
testcase_11 AC 462 ms
27,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in range(n):
	a,b,c,d=map(int,input().split())
	print("SELECT count(*) FROM point WHERE %d<=x AND x<=%d AND %d<=y AND y<=%d;" % (a,b,c,d))
0