結果

問題 No.408 五輪ピック
ユーザー %20%20
提出日時 2020-06-28 09:24:57
言語 Perl
(5.38.2)
結果
AC  
実行時間 368 ms / 5,000 ms
コード長 218 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-07-07 03:39:53
合計ジャッジ時間 6,807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,812 KB
testcase_01 AC 6 ms
6,816 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 283 ms
21,632 KB
testcase_06 AC 168 ms
21,376 KB
testcase_07 AC 224 ms
22,784 KB
testcase_08 AC 190 ms
16,256 KB
testcase_09 AC 193 ms
17,408 KB
testcase_10 AC 152 ms
18,560 KB
testcase_11 AC 137 ms
17,280 KB
testcase_12 AC 256 ms
23,424 KB
testcase_13 AC 275 ms
21,120 KB
testcase_14 AC 56 ms
11,008 KB
testcase_15 AC 279 ms
21,888 KB
testcase_16 AC 289 ms
21,632 KB
testcase_17 AC 284 ms
20,992 KB
testcase_18 AC 301 ms
22,528 KB
testcase_19 AC 297 ms
24,960 KB
testcase_20 AC 82 ms
14,848 KB
testcase_21 AC 48 ms
10,880 KB
testcase_22 AC 137 ms
20,736 KB
testcase_23 AC 368 ms
30,976 KB
testcase_24 AC 236 ms
26,112 KB
testcase_25 AC 256 ms
21,760 KB
testcase_26 AC 320 ms
28,544 KB
testcase_27 AC 265 ms
21,376 KB
testcase_28 AC 178 ms
19,712 KB
testcase_29 AC 180 ms
19,712 KB
testcase_30 AC 7 ms
6,940 KB
testcase_31 AC 7 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$N=<>;
map{push@$_,$_[--$|]for@_=glob}<>;
for$i(@1){
	$V[$_]=$V[$_]?-1:$i for@$i
}
$V[1]=0;
for$i(1..$N){
	map{
		$z|=$V[$i]&&$V[$_]&&$V[$i]!=$_&&$V[$_]!=$i&&($V[$i]<0||$V[$_]<0||$V[$i]!=$V[$_])
	}@$i
}
print$z?YES:NO
0