結果

問題 No.3021 データベースの練習
ユーザー mbanmban
提出日時 2017-09-09 13:03:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 542 ms / 5,000 ms
コード長 158 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 87,000 KB
実行使用メモリ 92,132 KB
平均クエリ数 540.42
最終ジャッジ日時 2023-09-23 14:31:26
合計ジャッジ時間 6,262 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
87,580 KB
testcase_01 AC 310 ms
87,300 KB
testcase_02 AC 406 ms
91,912 KB
testcase_03 AC 413 ms
92,132 KB
testcase_04 AC 389 ms
91,764 KB
testcase_05 AC 399 ms
91,136 KB
testcase_06 AC 216 ms
86,812 KB
testcase_07 AC 296 ms
86,912 KB
testcase_08 AC 405 ms
92,092 KB
testcase_09 AC 323 ms
91,300 KB
testcase_10 AC 290 ms
87,312 KB
testcase_11 AC 542 ms
91,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for i in range(N):
 a,b,c,d=input().split()
 print("SELECT count(*) FROM point WHERE x>={0} AND x<={1} AND y>={2} AND y<={3};".format(a,b,c,d))
0