結果
問題 |
No.932 解法破綻!高橋君
|
ユーザー |
![]() |
提出日時 | 2020-06-07 15:18:16 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 86 ms / 2,000 ms |
コード長 | 185 bytes |
コンパイル時間 | 9,196 ms |
コンパイル使用メモリ | 183,348 KB |
実行使用メモリ | 38,144 KB |
最終ジャッジ日時 | 2024-12-23 17:23:01 |
合計ジャッジ時間 | 11,720 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (250 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
open System [<EntryPoint>] let main _ = let s = stdin.ReadLine() let ac = s.Split(',') |> Array.forall((=) "AC") printfn "%s" <| if ac then "Done!" else "Failed..." 0