結果

問題 No.552 十分簡単な星1の問題
ユーザー tanson
提出日時 2025-10-20 00:09:37
言語 Standard ML
(MLton 20210117)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 3,525 ms
コンパイル使用メモリ 689,784 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-10-20 00:09:43
合計ジャッジ時間 5,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 46 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

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