結果

問題 No.345 最小チワワ問題
ユーザー togaerrortogaerror
提出日時 2016-04-05 16:58:06
言語 Raku
(rakudo v2024.02)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 135,312 KB
実行使用メモリ 140,196 KB
最終ジャッジ日時 2024-05-03 13:14:19
合計ジャッジ時間 18,819 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
136,832 KB
testcase_01 AC 529 ms
136,112 KB
testcase_02 AC 526 ms
136,704 KB
testcase_03 AC 557 ms
136,456 KB
testcase_04 WA -
testcase_05 AC 526 ms
136,452 KB
testcase_06 AC 534 ms
136,576 KB
testcase_07 AC 523 ms
136,372 KB
testcase_08 AC 527 ms
136,704 KB
testcase_09 AC 516 ms
136,832 KB
testcase_10 AC 528 ms
136,448 KB
testcase_11 AC 525 ms
136,432 KB
testcase_12 AC 582 ms
140,192 KB
testcase_13 AC 524 ms
136,228 KB
testcase_14 AC 557 ms
140,196 KB
testcase_15 WA -
testcase_16 AC 523 ms
136,580 KB
testcase_17 AC 530 ms
136,356 KB
testcase_18 AC 524 ms
136,176 KB
testcase_19 AC 526 ms
136,580 KB
testcase_20 AC 534 ms
136,676 KB
testcase_21 AC 525 ms
136,352 KB
testcase_22 AC 512 ms
136,480 KB
testcase_23 AC 524 ms
136,484 KB
testcase_24 WA -
testcase_25 AC 528 ms
136,304 KB
testcase_26 AC 521 ms
136,120 KB
testcase_27 AC 531 ms
136,320 KB
testcase_28 AC 525 ms
136,364 KB
testcase_29 AC 524 ms
136,544 KB
testcase_30 WA -
testcase_31 AC 524 ms
136,288 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; $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;
					}
					$w = 0;
					last;
				}
			}
		}
	}
}

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