結果

問題 No.405 ローマ数字の腕時計
ユーザー tentententen
提出日時 2020-11-11 14:47:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-07-06 19:30:54
合計ジャッジ時間 5,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,036 KB
testcase_01 AC 108 ms
52,932 KB
testcase_02 AC 118 ms
54,116 KB
testcase_03 AC 108 ms
52,796 KB
testcase_04 AC 118 ms
54,164 KB
testcase_05 AC 102 ms
53,100 KB
testcase_06 AC 107 ms
53,068 KB
testcase_07 AC 107 ms
52,808 KB
testcase_08 AC 104 ms
53,200 KB
testcase_09 AC 112 ms
53,616 KB
testcase_10 AC 103 ms
52,948 KB
testcase_11 AC 108 ms
52,632 KB
testcase_12 AC 112 ms
53,928 KB
testcase_13 AC 114 ms
54,396 KB
testcase_14 AC 115 ms
54,024 KB
testcase_15 AC 113 ms
54,132 KB
testcase_16 AC 112 ms
54,012 KB
testcase_17 AC 105 ms
52,792 KB
testcase_18 AC 115 ms
53,848 KB
testcase_19 AC 110 ms
52,716 KB
testcase_20 AC 104 ms
53,096 KB
testcase_21 AC 96 ms
52,624 KB
testcase_22 AC 114 ms
54,088 KB
testcase_23 AC 100 ms
52,992 KB
testcase_24 AC 101 ms
52,756 KB
testcase_25 AC 109 ms
54,136 KB
testcase_26 AC 111 ms
52,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String current = sc.next();
        String[] romans = new String[]{"XII", "I","II","III","IIII","V","VI","VII","VIII","IX","X","XI"};
        int next = sc.nextInt();
        for (int i = 0; i < romans.length; i++) {
            if (romans[i].equals(current)) {
                System.out.println(romans[(i + next + 12 * 100) % 12]);
                return;
            }
        }
    }
}
0