結果

問題 No.8021 データベースの練習
ユーザー watarimaycry2watarimaycry2
提出日時 2020-08-21 21:03:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 751 ms / 5,000 ms
コード長 595 bytes
コンパイル時間 2,417 ms
コンパイル使用メモリ 80,892 KB
実行使用メモリ 75,296 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-17 06:06:16
合計ジャッジ時間 11,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;import java.io.*;import java.math.*;
public class Main{
        public static void main(String[] args){
                Scanner sc = new Scanner(System.in);
          		int Q = sc.nextInt();
          		for(int i = 0; i < Q; i++){
                  int xL = sc.nextInt();
                  int xH = sc.nextInt();
                  int yL = sc.nextInt();
                  int yH = sc.nextInt();
                  System.out.println("SELECT count(*) FROM point WHERE x BETWEEN " + xL + " AND " + xH + " AND y BETWEEN " + yL + " AND " + yH + ";");
                }
        }
}
0