結果

問題 No.3021 データベースの練習
ユーザー ぴろずぴろず
提出日時 2017-04-01 00:19:35
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
69,756 KB
testcase_01 AC 457 ms
74,068 KB
testcase_02 AC 591 ms
75,968 KB
testcase_03 AC 610 ms
75,872 KB
testcase_04 AC 569 ms
75,028 KB
testcase_05 AC 561 ms
74,760 KB
testcase_06 AC 318 ms
71,000 KB
testcase_07 AC 430 ms
73,964 KB
testcase_08 AC 596 ms
75,840 KB
testcase_09 AC 500 ms
74,120 KB
testcase_10 AC 433 ms
73,844 KB
testcase_11 AC 695 ms
75,408 KB
権限があれば一括ダウンロードができます

ソースコード

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