結果

問題 No.8021 データベースの練習
ユーザー ぴろずぴろず
提出日時 2017-04-01 00:19:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 695 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 75,968 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 12:42:44
合計ジャッジ時間 9,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

package no3021;

import java.util.Scanner;

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(String.format("SELECT count(*) FROM point WHERE x BETWEEN %d AND %d AND y BETWEEN %d AND %d;",xl,xh,yl,yh));
		}
		
	}

}
0