結果

問題 No.405 ローマ数字の腕時計
ユーザー tentententen
提出日時 2020-11-11 14:47:14
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 527 bytes
コンパイル時間 2,336 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-07-22 18:29:53
合計ジャッジ時間 6,929 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,252 KB
testcase_01 AC 130 ms
41,328 KB
testcase_02 AC 117 ms
40,220 KB
testcase_03 AC 130 ms
41,248 KB
testcase_04 AC 130 ms
41,268 KB
testcase_05 AC 131 ms
41,344 KB
testcase_06 AC 133 ms
41,228 KB
testcase_07 AC 136 ms
41,272 KB
testcase_08 AC 138 ms
41,300 KB
testcase_09 AC 133 ms
41,040 KB
testcase_10 AC 138 ms
41,272 KB
testcase_11 AC 133 ms
41,504 KB
testcase_12 AC 133 ms
41,328 KB
testcase_13 AC 134 ms
41,376 KB
testcase_14 AC 135 ms
41,492 KB
testcase_15 AC 136 ms
41,252 KB
testcase_16 AC 137 ms
41,276 KB
testcase_17 AC 135 ms
41,712 KB
testcase_18 AC 133 ms
41,376 KB
testcase_19 AC 132 ms
41,328 KB
testcase_20 AC 140 ms
41,324 KB
testcase_21 AC 136 ms
41,508 KB
testcase_22 RE -
testcase_23 AC 136 ms
41,616 KB
testcase_24 AC 136 ms
41,580 KB
testcase_25 AC 137 ms
41,504 KB
testcase_26 AC 134 ms
41,612 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 * 12) % 12]);
                return;
            }
        }
    }
}
0