結果

問題 No.293 4>7の世界
ユーザー taktak
提出日時 2019-06-26 01:03:43
言語 F#
(F# 4.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 9,615 ms
コンパイル使用メモリ 188,908 KB
実行使用メモリ 29,692 KB
最終ジャッジ日時 2024-06-23 14:43:59
合計ジャッジ時間 9,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
29,184 KB
testcase_01 AC 56 ms
29,568 KB
testcase_02 AC 56 ms
29,056 KB
testcase_03 AC 57 ms
29,688 KB
testcase_04 AC 57 ms
29,556 KB
testcase_05 AC 57 ms
29,568 KB
testcase_06 AC 57 ms
29,440 KB
testcase_07 AC 57 ms
29,312 KB
testcase_08 AC 57 ms
29,312 KB
testcase_09 AC 57 ms
29,568 KB
testcase_10 AC 56 ms
29,184 KB
testcase_11 AC 58 ms
29,568 KB
testcase_12 AC 57 ms
29,692 KB
testcase_13 AC 57 ms
29,568 KB
testcase_14 AC 58 ms
29,688 KB
testcase_15 AC 57 ms
29,568 KB
testcase_16 AC 56 ms
29,560 KB
testcase_17 AC 57 ms
29,568 KB
testcase_18 AC 57 ms
29,312 KB
testcase_19 AC 57 ms
29,568 KB
testcase_20 AC 56 ms
29,176 KB
testcase_21 AC 56 ms
29,428 KB
testcase_22 AC 56 ms
29,680 KB
testcase_23 AC 56 ms
29,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (255 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 #

module Yuki

open System

let solve a b =
    let rec isA ax bx =
        match ax, bx with
        | 7L :: _, 4L :: _ ->
            false
        | 4L :: _, 7L :: _ ->
            true
        | a :: ax, b :: bx ->
            if a > b then true
            elif a < b then false
            else isA ax bx
        | ax, [] -> failwith ""
        | [], bx -> failwith ""
        
    let a' = string a
    let b' = string b
    if a'.Length > b'.Length then
        a
    elif a'.Length < b'.Length then
        b
    else
        let a'' = a'.ToCharArray() |> Array.map (string>>int64) |> Array.toList
        let b'' = b'.ToCharArray() |> Array.map (string>>int64) |> Array.toList
        if isA a'' b'' then
            a
        else
            b
    

let A, B = 
    let t = 
        Console.ReadLine().Split() 
        |> Array.map int64
    t.[0], t.[1]

solve A B
|> Console.WriteLine
0