結果

問題 No.3021 データベースの練習
ユーザー 👑 yumechiyumechi
提出日時 2017-04-01 01:29:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 554 ms / 5,000 ms
コード長 161 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 86,776 KB
実行使用メモリ 92,120 KB
平均クエリ数 540.42
最終ジャッジ日時 2023-09-23 13:08:07
合計ジャッジ時間 6,260 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
86,620 KB
testcase_01 AC 316 ms
87,236 KB
testcase_02 AC 404 ms
91,788 KB
testcase_03 AC 416 ms
91,852 KB
testcase_04 AC 393 ms
90,768 KB
testcase_05 AC 393 ms
91,436 KB
testcase_06 AC 222 ms
86,916 KB
testcase_07 AC 300 ms
87,212 KB
testcase_08 AC 411 ms
92,120 KB
testcase_09 AC 360 ms
91,724 KB
testcase_10 AC 299 ms
87,452 KB
testcase_11 AC 554 ms
92,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    l,h,j,k=input().split()
    print("SELECT count(*) FROM point WHERE x>={0}  AND x<={1} AND y>={2} AND y<={3};".format(l,h,j,k))
0