結果

問題 No.405 ローマ数字の腕時計
ユーザー ichibanshiboriichibanshibori
提出日時 2016-08-06 14:09:40
言語 F#
(F# 4.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 6,266 ms
コンパイル使用メモリ 187,612 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-07-06 19:01:32
合計ジャッジ時間 9,052 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
30,976 KB
testcase_01 AC 68 ms
30,720 KB
testcase_02 AC 69 ms
30,464 KB
testcase_03 AC 69 ms
30,812 KB
testcase_04 AC 67 ms
30,720 KB
testcase_05 AC 71 ms
30,972 KB
testcase_06 AC 69 ms
30,720 KB
testcase_07 AC 70 ms
30,976 KB
testcase_08 AC 68 ms
30,336 KB
testcase_09 AC 70 ms
30,976 KB
testcase_10 AC 66 ms
30,964 KB
testcase_11 AC 67 ms
30,720 KB
testcase_12 AC 68 ms
30,720 KB
testcase_13 AC 68 ms
30,720 KB
testcase_14 AC 69 ms
30,704 KB
testcase_15 AC 69 ms
30,720 KB
testcase_16 AC 70 ms
30,720 KB
testcase_17 AC 68 ms
30,720 KB
testcase_18 AC 67 ms
30,336 KB
testcase_19 AC 68 ms
30,720 KB
testcase_20 AC 70 ms
30,848 KB
testcase_21 AC 71 ms
30,848 KB
testcase_22 AC 67 ms
30,976 KB
testcase_23 AC 68 ms
30,720 KB
testcase_24 AC 71 ms
30,836 KB
testcase_25 AC 68 ms
31,104 KB
testcase_26 AC 69 ms
30,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (210 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 doIt () =
    let shour, dh = stdin.ReadLine () |> fun str -> str.Split () |> fun arr -> (arr.[0], int arr.[1])

    let hour = match shour with
               | "IX" -> 9
               | s -> seq s |> Seq.map (function | 'I' -> 1 | 'V' -> 5 | _ -> 10) |> Seq.sum

    (hour + (dh % 12) + 12) % 12 |>
    (function | 0 -> 12 | n -> n) |>
    (function | n when n <= 4 -> System.String('I', n)
              | n when n <= 8 -> "V" + System.String('I', n - 5)
              | 9 -> "IX"
              | n -> "X" + System.String('I', n - 10)) |>
    printfn "%s"

doIt ()
0