結果

問題 No.647 明太子
ユーザー tailstails
提出日時 2018-02-09 22:34:43
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,045 ms / 4,500 ms
コード長 271 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-06-27 02:30:56
合計ジャッジ時間 4,485 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,812 KB
testcase_01 AC 8 ms
6,940 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 7 ms
6,944 KB
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 20 ms
6,944 KB
testcase_10 AC 32 ms
6,944 KB
testcase_11 AC 14 ms
6,940 KB
testcase_12 AC 27 ms
6,940 KB
testcase_13 AC 48 ms
6,940 KB
testcase_14 AC 433 ms
7,680 KB
testcase_15 AC 71 ms
6,944 KB
testcase_16 AC 25 ms
6,940 KB
testcase_17 AC 547 ms
7,936 KB
testcase_18 AC 579 ms
7,680 KB
testcase_19 AC 177 ms
7,424 KB
testcase_20 AC 179 ms
7,296 KB
testcase_21 AC 72 ms
6,940 KB
testcase_22 AC 1,045 ms
8,064 KB
testcase_23 AC 10 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
for$i(1..$n){
	($a[$i],$b[$i])=glob<>;
}
$m=<>;
for$j(1..$m){
	($x,$y)=glob<>;
	for$i(1..$n){
		if($x<=$a[$i]&&$y>=$b[$i]){
			++$c[$j];
		}
	}
	if($d<$c[$j]){
		$d=$c[$j];
	}
}
if($d==0){
	print 0;
}else{
	for$j(1..$m){
		if($c[$j]==$d){
			print $j,$/;
		}
	}
}
0