結果

問題 No.405 ローマ数字の腕時計
ユーザー nullzinenullzine
提出日時 2017-01-25 21:23:47
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 718 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-06-06 12:34:34
合計ジャッジ時間 5,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,928 KB
testcase_01 AC 111 ms
40,680 KB
testcase_02 AC 117 ms
41,116 KB
testcase_03 AC 117 ms
41,148 KB
testcase_04 AC 110 ms
40,900 KB
testcase_05 AC 113 ms
40,944 KB
testcase_06 AC 120 ms
41,096 KB
testcase_07 AC 116 ms
41,244 KB
testcase_08 AC 116 ms
41,072 KB
testcase_09 AC 102 ms
39,876 KB
testcase_10 AC 120 ms
41,348 KB
testcase_11 RE -
testcase_12 AC 114 ms
41,196 KB
testcase_13 AC 116 ms
41,464 KB
testcase_14 AC 119 ms
41,056 KB
testcase_15 AC 114 ms
41,212 KB
testcase_16 AC 112 ms
40,868 KB
testcase_17 AC 115 ms
41,076 KB
testcase_18 AC 104 ms
40,092 KB
testcase_19 AC 102 ms
39,836 KB
testcase_20 RE -
testcase_21 AC 114 ms
41,216 KB
testcase_22 RE -
testcase_23 AC 114 ms
40,716 KB
testcase_24 RE -
testcase_25 AC 117 ms
40,948 KB
testcase_26 AC 114 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main {

    public static void main(String[] args){
        new Main().run();
    }

    private void run(){
        String[] clock = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
        String[] strs = new java.util.Scanner(System.in).nextLine().split(" ");
        System.out.println(clock[Integer.parseInt(strs[1])<0?clock.length+(search(clock,strs[0])+Integer.parseInt(strs[1]))%clock.length:(search(clock,strs[0])+Integer.parseInt(strs[1]))%clock.length]);
    }

    private int search(String[] clock,String target){
        for(int i=0;i<clock.length;i++){
            if(clock[i].equals(target)){
                return i;
            }
        }
        return -1;
    }

}
0