結果

問題 No.274 The Wall
コンテスト
ユーザー 👑 tails
提出日時 2015-08-28 23:30:25
言語 Perl
(5.42.1)
コンパイル:
perl -cw _filename_
実行:
perl -X _filename_
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 120 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 134 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-07-07 05:30:59
合計ジャッジ時間 1,658 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::n" used only once: possible typo at Main.pl line 1.
Name "main::a" used only once: possible typo at Main.pl line 5.
Main.pl syntax OK

ソースコード

diff #
raw source code

($n,$m)=<>=~/\d+/g;
for(<>){
	($l,$r)=//g;
	for($l..$r,$m-1-$r..$m-1-$l){
		exit!print"NO"if++$a[$_]>2;
	}
}
print"YES";
0