結果

問題 No.2298 yukicounter
ユーザー mtwtkmanmtwtkman
提出日時 2023-05-14 11:14:39
言語 Haskell
(9.8.2)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 11,411 ms
コンパイル使用メモリ 174,464 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-05-07 09:20:52
合計ジャッジ時間 5,891 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 111 ms
50,944 KB
testcase_04 AC 31 ms
20,864 KB
testcase_05 AC 5 ms
9,216 KB
testcase_06 AC 190 ms
71,040 KB
testcase_07 AC 33 ms
18,688 KB
testcase_08 AC 10 ms
10,240 KB
testcase_09 AC 23 ms
14,464 KB
testcase_10 AC 5 ms
6,272 KB
testcase_11 AC 25 ms
16,640 KB
testcase_12 AC 25 ms
16,768 KB
testcase_13 AC 24 ms
14,592 KB
testcase_14 AC 24 ms
15,104 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 7 ms
9,344 KB
testcase_17 AC 6 ms
8,448 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 24 ms
15,488 KB
testcase_23 AC 18 ms
13,568 KB
testcase_24 AC 108 ms
35,072 KB
testcase_25 AC 53 ms
23,808 KB
testcase_26 AC 13 ms
12,032 KB
testcase_27 AC 91 ms
35,072 KB
testcase_28 AC 12 ms
11,648 KB
testcase_29 AC 9 ms
10,112 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 7 ms
8,704 KB
testcase_32 AC 13 ms
11,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

solve :: String -> Int
solve = fst . go (0,0)
  where
    go :: (Int,Int) -> String -> (Int,Int)
    go (n,acc) "" = (max acc n, 0)
    go (n,acc) ('y' : 'u' : 'k' : 'i' : 'c' : 'o' : 'd' : 'e' : 'r' : xs) = go (n, acc+1) xs
    go (n,acc) (_:xs) = go (max acc n, 0) xs

main :: IO ()
main = do
  s <- getLine
  print $ solve s
0