結果

問題 No.3021 データベースの練習
ユーザー tailstails
提出日時 2017-03-31 22:38:59
言語 Perl
(5.38.2)
結果
AC  
実行時間 413 ms / 5,000 ms
コード長 123 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 25,232 KB
平均クエリ数 540.42
最終ジャッジ日時 2024-07-16 12:36:18
合計ジャッジ時間 4,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
24,976 KB
testcase_01 AC 213 ms
24,604 KB
testcase_02 AC 285 ms
24,976 KB
testcase_03 AC 299 ms
24,976 KB
testcase_04 AC 282 ms
24,976 KB
testcase_05 AC 286 ms
24,604 KB
testcase_06 AC 126 ms
25,232 KB
testcase_07 AC 200 ms
24,604 KB
testcase_08 AC 289 ms
24,848 KB
testcase_09 AC 231 ms
24,988 KB
testcase_10 AC 199 ms
24,976 KB
testcase_11 AC 413 ms
25,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$|=1;
for(1..<>){
	($a,$b,$c,$d)=glob<>;
	print "SELECT count(*) FROM point WHERE x>=$a AND x<=$b AND y>=$c AND y<=$d;\n"
}
0