結果

問題 No.345 最小チワワ問題
ユーザー tonyu0tonyu0
提出日時 2020-05-01 09:53:50
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 1,816 ms
コンパイル使用メモリ 147,580 KB
実行使用メモリ 139,908 KB
最終ジャッジ日時 2024-06-06 01:06:14
合計ジャッジ時間 15,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 380 ms
136,332 KB
testcase_01 AC 396 ms
136,076 KB
testcase_02 AC 383 ms
136,332 KB
testcase_03 AC 382 ms
135,820 KB
testcase_04 AC 369 ms
135,948 KB
testcase_05 AC 382 ms
135,824 KB
testcase_06 AC 370 ms
135,948 KB
testcase_07 AC 370 ms
135,820 KB
testcase_08 AC 404 ms
138,108 KB
testcase_09 AC 389 ms
136,460 KB
testcase_10 AC 404 ms
138,240 KB
testcase_11 AC 411 ms
138,876 KB
testcase_12 AC 452 ms
139,644 KB
testcase_13 AC 442 ms
139,908 KB
testcase_14 AC 454 ms
139,864 KB
testcase_15 AC 410 ms
138,200 KB
testcase_16 AC 398 ms
138,368 KB
testcase_17 AC 380 ms
136,080 KB
testcase_18 AC 507 ms
138,632 KB
testcase_19 AC 368 ms
136,332 KB
testcase_20 AC 373 ms
135,820 KB
testcase_21 AC 372 ms
136,080 KB
testcase_22 AC 384 ms
135,824 KB
testcase_23 AC 377 ms
136,432 KB
testcase_24 AC 373 ms
135,948 KB
testcase_25 AC 373 ms
135,952 KB
testcase_26 AC 372 ms
135,824 KB
testcase_27 AC 399 ms
136,208 KB
testcase_28 AC 378 ms
135,696 KB
testcase_29 AC 404 ms
138,240 KB
testcase_30 AC 396 ms
138,628 KB
testcase_31 AC 367 ms
135,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my @s = get.comb;

my $ans = 1e4;

for 0..^@s.elems -> $i {
    for $i + 1..^@s.elems -> $j {
        for $j + 1..^@s.elems -> $k {
            if @s[$i] eq 'c' && @s[$j] eq 'w' && @s[$k] eq 'w' {
                $ans = $ans min ($k - $i + 1)
            }
        }
    }
}

say $ans == 1e4 ?? -1 !! $ans
0