結果

問題 No.2714 Amaou
コンテスト
ユーザー tanson
提出日時 2026-04-03 14:03:07
言語 Standard ML
(MLton 20241230)
コンパイル:
mlton_wrapper _filename_
実行:
./main
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,039 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 7,309 ms
コンパイル使用メモリ 704,616 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-04-03 14:03:17
合計ジャッジ時間 6,087 ms
ジャッジサーバーID
(参考情報)
judge5_0 / judge4_0
純コード判定待ち
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

fun member x nil = false
  | member x (h::tl) =
    if x = h
    then true
    else member x tl


fun readInt () =
    valOf (TextIO.scanStream (Int.scan StringCvt.DEC) TextIO.stdIn)


fun readStr () =
    let
        fun scan reader stream = SOME (StringCvt.splitl (not o Char.isSpace) reader (StringCvt.skipWS reader stream))
    in
        valOf (TextIO.scanStream scan TextIO.stdIn)
    end


val () =
    let
        val n = readInt ()
        val s_s_list = List.tabulate (n, fn _ => [readStr (), readStr(), readStr(), readStr()])

        val ans = List.foldl (fn (s_s, acc) =>
                                 if member "akai" s_s andalso
                                    member "marui" s_s andalso
                                    member "okii" s_s andalso
                                    member "umai" s_s
                                 then acc + 1
                                 else acc)
                             0
                             s_s_list
    in
        print (Int.toString ans ^ "\n")
    end
0