結果

問題 No.3021 データベースの練習
ユーザー tatt61880tatt61880
提出日時 2020-04-24 01:08:13
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 438 ms / 5,000 ms
コード長 298 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 144,308 KB
実行使用メモリ 25,488 KB
平均クエリ数 1.00
最終ジャッジ日時 2024-09-16 10:44:39
合計ジャッジ時間 6,312 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
25,488 KB
testcase_01 AC 214 ms
24,848 KB
testcase_02 AC 288 ms
25,232 KB
testcase_03 AC 294 ms
25,232 KB
testcase_04 AC 269 ms
24,848 KB
testcase_05 AC 288 ms
25,232 KB
testcase_06 AC 130 ms
25,488 KB
testcase_07 AC 210 ms
24,844 KB
testcase_08 AC 282 ms
24,976 KB
testcase_09 AC 225 ms
24,848 KB
testcase_10 AC 206 ms
24,976 KB
testcase_11 AC 438 ms
24,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	for(1, n)
		var xl: int :: cui@inputInt()
		var xg: int :: cui@inputInt()
		var yl: int :: cui@inputInt()
		var yg: int :: cui@inputInt()
		do cui@print("SELECT count(*) FROM point WHERE \{xl}<=x AND x<=\{xg} AND \{yl}<=y AND y<=\{yg};")
	end for
end func
0