結果

問題 No.679 不思議マーケット
ユーザー tailstails
提出日時 2018-04-27 22:53:59
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 193 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-06-27 22:08:09
合計ジャッジ時間 7,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,888 KB
testcase_01 AC 10 ms
5,888 KB
testcase_02 AC 12 ms
5,888 KB
testcase_03 TLE -
testcase_04 AC 711 ms
6,144 KB
testcase_05 AC 866 ms
6,016 KB
testcase_06 AC 276 ms
6,016 KB
testcase_07 AC 187 ms
5,888 KB
testcase_08 AC 702 ms
6,016 KB
testcase_09 AC 11 ms
5,888 KB
testcase_10 AC 246 ms
6,144 KB
testcase_11 AC 202 ms
5,888 KB
testcase_12 AC 320 ms
6,144 KB
testcase_13 AC 446 ms
6,016 KB
testcase_14 AC 355 ms
6,016 KB
testcase_15 AC 165 ms
5,888 KB
testcase_16 AC 13 ms
5,888 KB
testcase_17 AC 11 ms
5,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::r" used only once: possible typo at Main.pl line 3.
Main.pl syntax OK

ソースコード

diff #

($n,$m)=glob<>;
for(1..$m){
	($g,$r)=glob<>;
	$h[$g]=<>;
}
for(1..500){
	hoge:
	for$g(1..$n){
		for($h[$g]=~/\d+/g){
			if(!$u[$_]){
				next hoge;
			}
		}
		$u[$g]=1;
	}
}
print 0+grep$_,@u;
0