結果

問題 No.3021 データベースの練習
ユーザー mbanmban
提出日時 2017-09-09 13:03:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 5,000 ms
コード長 158 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 84,040 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 14:10:52
合計ジャッジ時間 4,877 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
69,488 KB
testcase_01 AC 253 ms
71,884 KB
testcase_02 AC 345 ms
83,072 KB
testcase_03 AC 351 ms
82,764 KB
testcase_04 AC 331 ms
79,652 KB
testcase_05 AC 332 ms
78,644 KB
testcase_06 AC 162 ms
69,716 KB
testcase_07 AC 244 ms
70,604 KB
testcase_08 AC 342 ms
83,508 KB
testcase_09 AC 276 ms
78,608 KB
testcase_10 AC 235 ms
71,608 KB
testcase_11 AC 458 ms
84,040 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