結果

問題 No.345 最小チワワ問題
ユーザー togaerrortogaerror
提出日時 2016-04-05 16:58:06
言語 Raku
(rakudo v2024.02)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 146,140 KB
実行使用メモリ 147,836 KB
最終ジャッジ日時 2024-11-24 13:23:33
合計ジャッジ時間 15,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 443 ms
138,460 KB
testcase_01 AC 437 ms
138,464 KB
testcase_02 AC 456 ms
137,720 KB
testcase_03 AC 438 ms
137,720 KB
testcase_04 WA -
testcase_05 AC 428 ms
137,716 KB
testcase_06 AC 439 ms
137,724 KB
testcase_07 AC 432 ms
137,596 KB
testcase_08 AC 451 ms
138,716 KB
testcase_09 AC 431 ms
137,460 KB
testcase_10 AC 437 ms
137,852 KB
testcase_11 AC 433 ms
138,336 KB
testcase_12 AC 454 ms
141,328 KB
testcase_13 AC 453 ms
138,716 KB
testcase_14 AC 459 ms
141,908 KB
testcase_15 WA -
testcase_16 AC 430 ms
138,464 KB
testcase_17 AC 442 ms
137,344 KB
testcase_18 AC 440 ms
137,468 KB
testcase_19 AC 438 ms
138,632 KB
testcase_20 AC 438 ms
138,312 KB
testcase_21 AC 438 ms
137,508 KB
testcase_22 AC 432 ms
137,508 KB
testcase_23 AC 431 ms
137,248 KB
testcase_24 WA -
testcase_25 AC 465 ms
138,508 KB
testcase_26 AC 438 ms
137,508 KB
testcase_27 AC 457 ms
137,504 KB
testcase_28 AC 454 ms
137,512 KB
testcase_29 AC 445 ms
138,504 KB
testcase_30 WA -
testcase_31 AC 442 ms
138,636 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