結果

問題 No.405 ローマ数字の腕時計
ユーザー TDTD
提出日時 2022-06-08 15:57:13
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,024 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 108,696 KB
実行使用メモリ 24,200 KB
最終ジャッジ日時 2023-10-21 04:06:51
合計ジャッジ時間 2,241 ms
ジャッジサーバーID
(参考情報)
judge13 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,060 KB
testcase_01 AC 24 ms
24,060 KB
testcase_02 WA -
testcase_03 AC 23 ms
24,060 KB
testcase_04 AC 23 ms
24,060 KB
testcase_05 AC 22 ms
24,060 KB
testcase_06 AC 23 ms
24,060 KB
testcase_07 AC 23 ms
24,060 KB
testcase_08 AC 23 ms
24,060 KB
testcase_09 AC 22 ms
24,060 KB
testcase_10 AC 22 ms
24,060 KB
testcase_11 AC 22 ms
24,060 KB
testcase_12 AC 22 ms
24,060 KB
testcase_13 AC 23 ms
24,060 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 24 ms
24,060 KB
testcase_17 AC 25 ms
24,060 KB
testcase_18 AC 26 ms
24,060 KB
testcase_19 AC 25 ms
24,060 KB
testcase_20 WA -
testcase_21 AC 24 ms
24,060 KB
testcase_22 WA -
testcase_23 AC 24 ms
24,060 KB
testcase_24 AC 24 ms
24,060 KB
testcase_25 AC 24 ms
24,060 KB
testcase_26 AC 24 ms
24,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] s = Console.ReadLine().Split(' ');
            string[] s1 = { "I", "II", "III", "IIII", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII" };
            int a = int.Parse(s[1]);
            int t = 0;
            
            int t1 = 0;
            for (int i = 0; i < 12; i++)
            {
                if (s1[i] == s[0])
                {
                    t = i + 1;
                    t1 = t;
                }
            }
            int count = t1;
            t += a;

            if (t == 0)
            {
                count = 11;
                Console.WriteLine(s1[count]);
            }
            else if (t > 12)
            {
                t %= 12;
                if (t == 0)
                {
                    Console.WriteLine(s1[t1 - 1]);

                }
                if (t != 0)
                {
                    t -= 1;
                    Console.WriteLine(s1[t]);
                }
            }
            else if (t < 0)

            {

                int k = a * -1;
                
                    k %= 12;
                if (k == 0)
                {
                    Console.WriteLine(s1[t1 - 1]);

                }
                else
                {
                    for (int j = 0; j < k; j++)
                    {
                        count--;
                        if (count == 0)
                        {
                            count = 11;
                        }
                    }
                    if (count == 12)
                    {
                        count = 0;
                    }
                    Console.WriteLine(s1[count ]);
                }

          
            }
            else
            {
                if (t != 0)
                {
                    t -= 1;
                }

                Console.WriteLine(s1[t]);
            }


        }
    }
}
0