結果

問題 No.3021 データベースの練習
ユーザー yumechiyumechi
提出日時 2017-04-01 01:26:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 521 ms / 5,000 ms
コード長 165 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 83,864 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 12:45:19
合計ジャッジ時間 5,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
67,672 KB
testcase_01 AC 279 ms
71,000 KB
testcase_02 AC 389 ms
82,144 KB
testcase_03 AC 398 ms
81,880 KB
testcase_04 AC 377 ms
79,192 KB
testcase_05 AC 376 ms
78,168 KB
testcase_06 AC 184 ms
69,208 KB
testcase_07 AC 270 ms
70,112 KB
testcase_08 AC 383 ms
82,264 KB
testcase_09 AC 315 ms
77,912 KB
testcase_10 AC 268 ms
71,632 KB
testcase_11 AC 521 ms
83,864 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