結果

問題 No.405 ローマ数字の腕時計
ユーザー kuuso1kuuso1
提出日時 2016-08-16 08:24:41
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 15,330 ms
コンパイル使用メモリ 189,352 KB
実行使用メモリ 29,056 KB
最終ジャッジ日時 2024-06-06 12:28:36
合計ジャッジ時間 14,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

open System
type Sol() =
    member this.Solve() = 
        let f s =
            match s with
            | "I"   -> 1
            | "II"  -> 2
            | "III" -> 3
            | "IV"  -> 4
            | "V"   -> 5
            | "VI"  -> 6
            | "VII" -> 7
            | "VIII" -> 8
            | "IX"  -> 9
            | "X"   -> 10
            | "XI"  -> 11
            | "XII" -> 12
            | _ -> 0
        let invf = [| "XII";"I";"II";"III";"IV";"V";"VI";"VII";"VIII";"IX";"X";"XI" |]
        let ans = stdin.ReadLine().Split(' ') |> (fun ss -> ( (f ss.[0]) + (int ss.[1]) + 12*10000 ) % 12)
        Console.WriteLine(invf.[ans])
            

let mySol = new Sol()
mySol.Solve()
0