結果

問題 No.405 ローマ数字の腕時計
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-12 23:32:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-07-06 19:09:19
合計ジャッジ時間 6,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,108 KB
testcase_01 AC 124 ms
54,044 KB
testcase_02 AC 128 ms
54,116 KB
testcase_03 AC 122 ms
54,052 KB
testcase_04 AC 124 ms
53,900 KB
testcase_05 AC 121 ms
54,224 KB
testcase_06 AC 122 ms
54,224 KB
testcase_07 AC 111 ms
53,080 KB
testcase_08 AC 123 ms
54,056 KB
testcase_09 AC 125 ms
54,180 KB
testcase_10 AC 124 ms
54,072 KB
testcase_11 AC 127 ms
54,304 KB
testcase_12 AC 120 ms
53,980 KB
testcase_13 AC 123 ms
54,212 KB
testcase_14 AC 108 ms
52,808 KB
testcase_15 AC 122 ms
54,496 KB
testcase_16 AC 124 ms
53,908 KB
testcase_17 AC 121 ms
54,092 KB
testcase_18 AC 108 ms
53,144 KB
testcase_19 AC 122 ms
53,916 KB
testcase_20 AC 126 ms
54,180 KB
testcase_21 AC 109 ms
52,700 KB
testcase_22 AC 128 ms
53,856 KB
testcase_23 AC 122 ms
54,128 KB
testcase_24 AC 128 ms
54,544 KB
testcase_25 AC 119 ms
54,148 KB
testcase_26 AC 124 ms
54,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);

        String[] time = {"XII", "I", "II", "III", "IIII", "V", "VI", "VII", "VIII", "IX", "X", "XI"};

        String s1 = in.next();
        int t = in.nextInt();

        int p = 0;

        for(int i=0; i<time.length; i++) {
            if(s1.equals(time[i])) {
                    p = i;
            }
        }

        t = p + t;

        t = (t % 12 + 12) % 12;

        System.out.println(time[t]);

        in.close();
    }
}
0