結果
問題 | No.3021 データベースの練習 |
ユーザー | tatt61880 |
提出日時 | 2020-04-22 20:56:22 |
言語 | Kuin (KuinC++ v.2021.9.17) |
結果 |
AC
|
実行時間 | 440 ms / 5,000 ms |
コード長 | 351 bytes |
コンパイル時間 | 2,652 ms |
コンパイル使用メモリ | 146,380 KB |
実行使用メモリ | 25,232 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2024-09-16 10:40:22 |
合計ジャッジ時間 | 7,312 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
24,848 KB |
testcase_01 | AC | 227 ms
24,976 KB |
testcase_02 | AC | 317 ms
25,232 KB |
testcase_03 | AC | 315 ms
24,464 KB |
testcase_04 | AC | 292 ms
25,232 KB |
testcase_05 | AC | 309 ms
24,976 KB |
testcase_06 | AC | 138 ms
24,848 KB |
testcase_07 | AC | 214 ms
24,976 KB |
testcase_08 | AC | 296 ms
24,976 KB |
testcase_09 | AC | 235 ms
24,592 KB |
testcase_10 | AC | 214 ms
25,232 KB |
testcase_11 | AC | 440 ms
24,848 KB |
ソースコード
func main() var n: int :: cui@input().toInt(&) for i(1, n) var ss: [][]char :: cui@input().split(" ") var xl: int :: ss[0].toInt(&) var xg: int :: ss[1].toInt(&) var yl: int :: ss[2].toInt(&) var yg: int :: ss[3].toInt(&) do cui@print("SELECT count(*) FROM point WHERE \{xl}<=x AND x<=\{xg} AND \{yl}<=y AND y<=\{yg};") end for end func