結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
コンテスト
ユーザー tanson
提出日時 2025-11-27 00:20:12
言語 Standard ML
(MLton 20210117)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 6,393 ms
コンパイル使用メモリ 687,100 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-11-27 00:20:20
合計ジャッジ時間 4,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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 _ = readStr ()
        val _ = readStr ()
    in
        print "Yes\n"
    end
0