結果

問題 No.405 ローマ数字の腕時計
ユーザー mbanmban
提出日時 2016-09-25 16:10:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 113,436 KB
実行使用メモリ 26,516 KB
最終ジャッジ日時 2024-07-06 19:06:10
合計ジャッジ時間 2,709 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,460 KB
testcase_01 AC 24 ms
24,112 KB
testcase_02 AC 25 ms
24,200 KB
testcase_03 AC 26 ms
24,336 KB
testcase_04 AC 26 ms
26,392 KB
testcase_05 AC 26 ms
26,256 KB
testcase_06 AC 27 ms
24,208 KB
testcase_07 AC 26 ms
24,372 KB
testcase_08 AC 26 ms
24,208 KB
testcase_09 AC 25 ms
26,240 KB
testcase_10 AC 25 ms
24,076 KB
testcase_11 AC 27 ms
26,492 KB
testcase_12 AC 28 ms
24,204 KB
testcase_13 AC 25 ms
24,368 KB
testcase_14 AC 25 ms
26,260 KB
testcase_15 AC 24 ms
22,072 KB
testcase_16 AC 25 ms
22,068 KB
testcase_17 AC 25 ms
24,340 KB
testcase_18 AC 24 ms
26,384 KB
testcase_19 AC 27 ms
26,516 KB
testcase_20 AC 26 ms
24,204 KB
testcase_21 AC 27 ms
26,380 KB
testcase_22 AC 26 ms
24,464 KB
testcase_23 AC 26 ms
24,348 KB
testcase_24 AC 26 ms
26,244 KB
testcase_25 AC 26 ms
26,260 KB
testcase_26 AC 26 ms
24,364 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Magatro {
    static string[] rome = { "XII", "I", "II", "III", "IIII", "V", "VI", "VII", "VIII", "IX", "X", "XI" };
    static void Main() {
        string[] ss = Console.ReadLine().Split(' ');
        Dictionary<string, int> D = new Dictionary<string, int>();
        for(int i = 0; i < 12; i++) {
            D.Add(rome[i], i);
        }
        int j = D[ss[0]] + int.Parse(ss[1]);
        Console.WriteLine(rome[(j+1200) % 12]);
    }


}
0