結果

問題 No.293 4>7の世界
ユーザー nobigomunobigomu
提出日時 2018-06-01 13:29:05
言語 F#
(F# 4.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 9,152 ms
コンパイル使用メモリ 192,120 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-06-09 17:20:10
合計ジャッジ時間 11,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,080 KB
testcase_01 AC 57 ms
30,080 KB
testcase_02 AC 57 ms
30,452 KB
testcase_03 AC 64 ms
30,848 KB
testcase_04 AC 63 ms
30,652 KB
testcase_05 AC 64 ms
30,688 KB
testcase_06 AC 57 ms
30,336 KB
testcase_07 AC 63 ms
30,592 KB
testcase_08 AC 63 ms
30,720 KB
testcase_09 AC 63 ms
30,712 KB
testcase_10 AC 56 ms
30,304 KB
testcase_11 AC 67 ms
30,592 KB
testcase_12 AC 70 ms
30,848 KB
testcase_13 AC 69 ms
30,464 KB
testcase_14 AC 67 ms
30,592 KB
testcase_15 AC 65 ms
30,464 KB
testcase_16 AC 58 ms
30,336 KB
testcase_17 AC 64 ms
30,720 KB
testcase_18 AC 64 ms
30,720 KB
testcase_19 AC 65 ms
30,848 KB
testcase_20 AC 56 ms
30,452 KB
testcase_21 AC 56 ms
30,208 KB
testcase_22 AC 65 ms
30,720 KB
testcase_23 AC 63 ms
30,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (224 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 #

let g a b = Seq.zip a b |> Seq.tryFindIndex (fun (a,b) -> a<>b) |> Option.get
let f (s:string) (t:string) =
    if s.Length<>t.Length then
        s.Length>t.Length
    else
        let i = g s t
        match (s.[i],t.[i]) with
        | ('7','4') | ('4','7') -> not (s.[i]>t.[i])
        | _ -> s.[i]>t.[i]
    |> fun b -> if b then s else t

(stdin.ReadLine >> fun s -> s.Split ' ') () |> fun a -> f a.[0] a.[1] |> printfn "%s"
0