結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
68,552 KB
testcase_01 AC 280 ms
71,648 KB
testcase_02 AC 369 ms
82,644 KB
testcase_03 AC 394 ms
82,008 KB
testcase_04 AC 361 ms
79,448 KB
testcase_05 AC 372 ms
78,040 KB
testcase_06 AC 181 ms
69,880 KB
testcase_07 AC 268 ms
70,624 KB
testcase_08 AC 370 ms
82,008 KB
testcase_09 AC 301 ms
77,400 KB
testcase_10 AC 262 ms
70,872 KB
testcase_11 AC 527 ms
83,424 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