結果

問題 No.3021 データベースの練習
ユーザー maimai
提出日時 2018-08-20 20:32:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 511 ms / 5,000 ms
コード長 495 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,272 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 15:59:56
合計ジャッジ時間 5,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
28,760 KB
testcase_01 AC 308 ms
28,760 KB
testcase_02 AC 382 ms
29,272 KB
testcase_03 AC 394 ms
28,752 KB
testcase_04 AC 366 ms
28,760 KB
testcase_05 AC 380 ms
28,640 KB
testcase_06 AC 217 ms
28,888 KB
testcase_07 AC 288 ms
28,888 KB
testcase_08 AC 375 ms
29,024 KB
testcase_09 AC 316 ms
28,896 KB
testcase_10 AC 285 ms
28,888 KB
testcase_11 AC 511 ms
28,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets.to_i.times do
    x1,x2,y1,y2 = gets.split.map(&:to_i)
    if x1 == x2 && y1 == y2
        puts "SELECT count(*) FROM point WHERE #{x1}=x AND #{y1}=y;"
    elsif x1 == x2
        puts "SELECT count(*) FROM point WHERE #{x1}=x AND #{y1}<=y AND y<=#{y2};"
    elsif y1 == y2
        puts "SELECT count(*) FROM point WHERE #{x1}<=x AND x<=#{x2} AND #{y1}=y;"
    else
        puts "SELECT count(*) FROM point WHERE #{x1}<=x AND x<=#{x2} AND #{y1}<=y AND y<=#{y2};"
    end
    STDOUT.flush
end
0