結果

問題 No.345 最小チワワ問題
ユーザー togaerrortogaerror
提出日時 2016-04-05 17:00:51
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 838 ms
コンパイル使用メモリ 146,388 KB
実行使用メモリ 141,520 KB
最終ジャッジ日時 2024-09-25 11:43:07
合計ジャッジ時間 18,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
137,496 KB
testcase_01 AC 491 ms
137,536 KB
testcase_02 AC 495 ms
137,280 KB
testcase_03 AC 487 ms
137,408 KB
testcase_04 AC 487 ms
137,020 KB
testcase_05 AC 488 ms
136,036 KB
testcase_06 AC 500 ms
137,536 KB
testcase_07 AC 488 ms
136,240 KB
testcase_08 AC 501 ms
137,496 KB
testcase_09 AC 492 ms
138,016 KB
testcase_10 AC 497 ms
137,496 KB
testcase_11 AC 495 ms
136,420 KB
testcase_12 AC 512 ms
141,520 KB
testcase_13 AC 490 ms
137,116 KB
testcase_14 AC 509 ms
140,828 KB
testcase_15 AC 489 ms
137,240 KB
testcase_16 AC 495 ms
137,244 KB
testcase_17 AC 489 ms
137,152 KB
testcase_18 AC 503 ms
137,584 KB
testcase_19 AC 484 ms
137,500 KB
testcase_20 AC 499 ms
136,416 KB
testcase_21 AC 485 ms
136,420 KB
testcase_22 AC 504 ms
137,500 KB
testcase_23 AC 505 ms
135,904 KB
testcase_24 AC 512 ms
137,760 KB
testcase_25 AC 501 ms
137,372 KB
testcase_26 AC 506 ms
137,400 KB
testcase_27 AC 503 ms
137,372 KB
testcase_28 AC 498 ms
137,368 KB
testcase_29 AC 504 ms
137,240 KB
testcase_30 AC 509 ms
137,364 KB
testcase_31 AC 500 ms
137,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

use v6;

my @str = get().chomp.split('');

my $w = 0;
my $long = 0;
loop (my $i = 1; $i < @str.elems - 1; $i++) {
	if @str[$i] eq 'c' {
		loop (my $j = $i + 1; $j < @str.elems - 1; $j++) {
			if @str[$j] eq 'w' {
				if $w == 0 {
					$w++;
				} elsif $w == 1 {
					if $long == 0 {
						$long = $j - $i + 1;
					} elsif $j - $i + 1 < $long {
						$long = $j - $i + 1;
					}
					last;
				}
			}
		}
		$w = 0;
	}
}

if $long == 0 {
	say -1;
} else {
	say $long;
}
exit;
0