結果

問題 No.293 4>7の世界
ユーザー vain0vain0
提出日時 2015-10-23 22:40:29
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 11,095 ms
コンパイル使用メモリ 199,172 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-07-23 01:29:05
合計ジャッジ時間 13,666 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
30,208 KB
testcase_01 AC 67 ms
30,336 KB
testcase_02 AC 66 ms
30,324 KB
testcase_03 AC 66 ms
30,464 KB
testcase_04 AC 64 ms
30,336 KB
testcase_05 AC 64 ms
30,464 KB
testcase_06 AC 65 ms
30,328 KB
testcase_07 WA -
testcase_08 AC 66 ms
30,080 KB
testcase_09 AC 67 ms
30,208 KB
testcase_10 AC 67 ms
30,080 KB
testcase_11 AC 68 ms
30,464 KB
testcase_12 AC 67 ms
30,592 KB
testcase_13 WA -
testcase_14 AC 65 ms
30,464 KB
testcase_15 AC 67 ms
30,464 KB
testcase_16 AC 66 ms
30,592 KB
testcase_17 AC 66 ms
30,336 KB
testcase_18 AC 68 ms
30,208 KB
testcase_19 AC 67 ms
30,464 KB
testcase_20 AC 68 ms
30,080 KB
testcase_21 AC 68 ms
30,208 KB
testcase_22 AC 67 ms
30,592 KB
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (398 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(6,7): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
open System.Collections.Generic

[<EntryPoint>]
let main argv =
  let [| a; b |] = Console.ReadLine().Split(' ')

  let result =
    if a.Length <> b.Length then
      if a.Length > b.Length
      then a
      else b
    else
      let rec mymax (x: string) (y: string) =
          if x.Length = 0
          then ""
          else
            let s, ss = x.[0], x.Substring(1)
            let t, ts = y.[0], y.Substring(1)
            if (min s t = '4') && (max s t = '7') then
              "4" + mymax ss ts
            else if s <> t then
              if s > t then x else y
            else
              (string s) + mymax ss ts
      mymax a b

  printfn "%s" result

  //exit code
  0
0