結果

問題 No.3021 データベースの練習
ユーザー 👑 yumechiyumechi
提出日時 2017-04-01 01:26:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 5,000 ms
コード長 165 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 87,100 KB
実行使用メモリ 91,932 KB
平均クエリ数 540.42
最終ジャッジ日時 2023-09-23 13:08:14
合計ジャッジ時間 6,016 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
87,160 KB
testcase_01 AC 318 ms
86,664 KB
testcase_02 AC 399 ms
91,644 KB
testcase_03 AC 415 ms
91,932 KB
testcase_04 AC 394 ms
90,888 KB
testcase_05 AC 394 ms
91,076 KB
testcase_06 AC 219 ms
87,472 KB
testcase_07 AC 303 ms
86,740 KB
testcase_08 AC 404 ms
91,808 KB
testcase_09 AC 335 ms
91,488 KB
testcase_10 AC 302 ms
87,636 KB
testcase_11 AC 557 ms
91,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for _ in range(n):
    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