結果

問題 No.3021 データベースの練習
ユーザー 👑 tatt61880tatt61880
提出日時 2020-04-24 01:08:13
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 430 ms / 5,000 ms
コード長 298 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 147,452 KB
実行使用メモリ 24,432 KB
平均クエリ数 1.00
最終ジャッジ日時 2023-10-14 16:22:48
合計ジャッジ時間 7,581 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
23,484 KB
testcase_01 AC 214 ms
23,448 KB
testcase_02 AC 285 ms
24,384 KB
testcase_03 AC 300 ms
24,432 KB
testcase_04 AC 278 ms
23,688 KB
testcase_05 AC 292 ms
24,120 KB
testcase_06 AC 131 ms
23,868 KB
testcase_07 AC 205 ms
24,036 KB
testcase_08 AC 285 ms
23,412 KB
testcase_09 AC 228 ms
23,448 KB
testcase_10 AC 203 ms
23,436 KB
testcase_11 AC 430 ms
23,484 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