結果

問題 No.932 解法破綻!高橋君
ユーザー ikdikd
提出日時 2020-06-07 15:18:16
言語 F#
(F# 4.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 4,891 ms
コンパイル使用メモリ 162,124 KB
実行使用メモリ 27,384 KB
最終ジャッジ日時 2023-08-25 10:50:09
合計ジャッジ時間 8,087 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
24,816 KB
testcase_01 AC 75 ms
24,768 KB
testcase_02 AC 75 ms
22,616 KB
testcase_03 AC 75 ms
24,608 KB
testcase_04 AC 74 ms
22,596 KB
testcase_05 AC 74 ms
22,580 KB
testcase_06 AC 76 ms
22,684 KB
testcase_07 AC 74 ms
22,636 KB
testcase_08 AC 76 ms
24,744 KB
testcase_09 AC 76 ms
24,644 KB
testcase_10 AC 76 ms
22,628 KB
testcase_11 AC 75 ms
22,576 KB
testcase_12 AC 83 ms
22,784 KB
testcase_13 AC 82 ms
24,784 KB
testcase_14 AC 80 ms
22,748 KB
testcase_15 AC 77 ms
24,628 KB
testcase_16 AC 81 ms
22,812 KB
testcase_17 AC 94 ms
27,384 KB
testcase_18 AC 93 ms
27,332 KB
testcase_19 AC 92 ms
25,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

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
0