結果

問題 No.69 文字を自由に並び替え
ユーザー hum_ophum_op
提出日時 2016-04-17 19:17:07
言語 F#
(F# 4.0)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 15,246 ms
コンパイル使用メモリ 191,928 KB
実行使用メモリ 30,460 KB
最終ジャッジ日時 2024-05-08 05:06:31
合計ジャッジ時間 8,611 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
30,196 KB
testcase_01 AC 64 ms
30,324 KB
testcase_02 AC 64 ms
30,460 KB
testcase_03 AC 65 ms
30,080 KB
testcase_04 AC 66 ms
30,080 KB
testcase_05 AC 69 ms
30,300 KB
testcase_06 AC 63 ms
30,300 KB
testcase_07 AC 64 ms
30,336 KB
testcase_08 AC 62 ms
30,336 KB
testcase_09 AC 64 ms
30,336 KB
testcase_10 AC 64 ms
30,336 KB
testcase_11 AC 63 ms
30,460 KB
testcase_12 AC 63 ms
30,436 KB
testcase_13 AC 62 ms
30,460 KB
testcase_14 AC 64 ms
30,460 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (421 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/

ソースコード

diff #

open System

let No69 () =
    let A = [ 
        let IN = Console.ReadLine() 
        for i in 0..IN.Length-1 -> IN.[i]
        ]
    let A = List.sort <| A
    let B = [
        let IN = Console.ReadLine()
        for i in 0..IN.Length-1 -> IN.[i]
        ]
    let B = List.sort <| B

    if A = B then
        printfn "YES"
    else
        printfn "NO"

    ()
 
No69 ()
0