結果

問題 No.2298 yukicounter
ユーザー mtwtkmanmtwtkman
提出日時 2023-05-14 11:14:39
言語 Haskell
(9.10.1)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 5,155 ms
コンパイル使用メモリ 175,488 KB
実行使用メモリ 70,912 KB
最終ジャッジ日時 2024-11-30 00:52:21
合計ジャッジ時間 6,705 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 131 ms
50,944 KB
testcase_04 AC 42 ms
21,120 KB
testcase_05 AC 7 ms
9,216 KB
testcase_06 AC 224 ms
70,912 KB
testcase_07 AC 38 ms
18,944 KB
testcase_08 AC 9 ms
10,496 KB
testcase_09 AC 23 ms
14,592 KB
testcase_10 AC 4 ms
6,272 KB
testcase_11 AC 27 ms
16,640 KB
testcase_12 AC 29 ms
16,640 KB
testcase_13 AC 28 ms
14,592 KB
testcase_14 AC 29 ms
15,360 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 9 ms
9,216 KB
testcase_17 AC 6 ms
8,576 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 27 ms
15,744 KB
testcase_23 AC 22 ms
13,440 KB
testcase_24 AC 129 ms
35,328 KB
testcase_25 AC 63 ms
23,936 KB
testcase_26 AC 16 ms
12,032 KB
testcase_27 AC 111 ms
35,200 KB
testcase_28 AC 16 ms
11,520 KB
testcase_29 AC 13 ms
10,112 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 7 ms
8,832 KB
testcase_32 AC 15 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