結果

問題 No.293 4>7の世界
ユーザー taktak
提出日時 2019-06-26 00:53:58
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 10,555 ms
コンパイル使用メモリ 188,828 KB
実行使用メモリ 30,208 KB
最終ジャッジ日時 2024-06-23 14:33:19
合計ジャッジ時間 11,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
29,696 KB
testcase_01 AC 58 ms
29,824 KB
testcase_02 AC 58 ms
29,824 KB
testcase_03 WA -
testcase_04 AC 58 ms
29,824 KB
testcase_05 WA -
testcase_06 AC 59 ms
29,696 KB
testcase_07 AC 57 ms
29,664 KB
testcase_08 AC 57 ms
29,568 KB
testcase_09 WA -
testcase_10 AC 57 ms
29,816 KB
testcase_11 AC 57 ms
29,696 KB
testcase_12 AC 57 ms
29,824 KB
testcase_13 AC 57 ms
29,696 KB
testcase_14 AC 58 ms
29,824 KB
testcase_15 WA -
testcase_16 AC 57 ms
29,824 KB
testcase_17 AC 58 ms
30,080 KB
testcase_18 AC 58 ms
29,824 KB
testcase_19 AC 58 ms
29,568 KB
testcase_20 AC 57 ms
29,796 KB
testcase_21 AC 58 ms
29,688 KB
testcase_22 AC 58 ms
29,696 KB
testcase_23 AC 58 ms
29,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (345 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 swap4and7 =
        string
        >> fun x -> x.Replace('4', 't')
        >> fun x -> x.Replace('7', '4')
        >> fun x -> x.Replace('t', '7')
        >> int64
    let a' = swap4and7 a
    let b' = swap4and7 b
    if 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