結果

問題 No.342 一番ワロタww
ユーザー tailstails
提出日時 2016-02-12 22:54:10
言語 Perl
(5.38.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 154 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 5,988 KB
実行使用メモリ 6,172 KB
最終ジャッジ日時 2023-10-22 03:20:04
合計ジャッジ時間 948 ms
ジャッジサーバーID
(参考情報)
judge9 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,120 KB
testcase_01 AC 12 ms
6,124 KB
testcase_02 AC 12 ms
6,124 KB
testcase_03 AC 11 ms
6,124 KB
testcase_04 AC 11 ms
6,124 KB
testcase_05 AC 11 ms
6,124 KB
testcase_06 AC 11 ms
6,124 KB
testcase_07 AC 12 ms
6,128 KB
testcase_08 AC 12 ms
6,112 KB
testcase_09 AC 11 ms
6,124 KB
testcase_10 AC 12 ms
6,124 KB
testcase_11 AC 12 ms
6,124 KB
testcase_12 AC 12 ms
6,124 KB
testcase_13 AC 11 ms
6,124 KB
testcase_14 AC 11 ms
6,120 KB
testcase_15 AC 11 ms
6,108 KB
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use utf8;
utf8::decode($_=<>);
for$d(reverse 1..999){
	if(/w{$d}/){
		while(/([^w]+)w{$d}/g){
			utf8::encode($a=$1.$/);
			print$a
		}
		exit;
	}
}
0