結果

問題 No.408 五輪ピック
ユーザー %20%20
提出日時 2020-06-28 09:26:37
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-07-07 03:42:32
合計ジャッジ時間 6,948 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,820 KB
testcase_01 AC 6 ms
6,944 KB
testcase_02 AC 7 ms
6,940 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 271 ms
21,504 KB
testcase_06 AC 187 ms
21,376 KB
testcase_07 AC 226 ms
22,784 KB
testcase_08 AC 191 ms
16,256 KB
testcase_09 AC 200 ms
17,408 KB
testcase_10 AC 159 ms
18,432 KB
testcase_11 AC 143 ms
17,408 KB
testcase_12 AC 258 ms
23,424 KB
testcase_13 AC 269 ms
21,120 KB
testcase_14 AC 56 ms
11,008 KB
testcase_15 AC 276 ms
21,760 KB
testcase_16 AC 284 ms
21,632 KB
testcase_17 AC 282 ms
20,992 KB
testcase_18 AC 305 ms
22,656 KB
testcase_19 AC 306 ms
24,832 KB
testcase_20 AC 84 ms
14,848 KB
testcase_21 AC 47 ms
10,880 KB
testcase_22 AC 138 ms
20,736 KB
testcase_23 AC 366 ms
31,488 KB
testcase_24 WA -
testcase_25 AC 265 ms
21,760 KB
testcase_26 AC 340 ms
28,544 KB
testcase_27 AC 272 ms
21,376 KB
testcase_28 AC 189 ms
19,968 KB
testcase_29 AC 187 ms
20,096 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$N=<>;
map{push@$_,$_[--$|]for@_=glob}<>;
for$i(@1){
	$V[$_]=$V[$_]?-1:$i for@$i
}
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