結果

問題 No.405 ローマ数字の腕時計
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 09:46:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 3,319 ms
コンパイル使用メモリ 77,860 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-07-06 19:10:24
合計ジャッジ時間 7,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,240 KB
testcase_01 AC 122 ms
54,164 KB
testcase_02 AC 123 ms
54,136 KB
testcase_03 AC 121 ms
54,164 KB
testcase_04 AC 126 ms
54,220 KB
testcase_05 AC 124 ms
54,132 KB
testcase_06 AC 122 ms
53,888 KB
testcase_07 AC 122 ms
54,152 KB
testcase_08 AC 109 ms
52,748 KB
testcase_09 AC 109 ms
53,076 KB
testcase_10 AC 122 ms
53,016 KB
testcase_11 AC 123 ms
54,248 KB
testcase_12 AC 124 ms
53,920 KB
testcase_13 AC 130 ms
53,988 KB
testcase_14 AC 125 ms
54,052 KB
testcase_15 AC 126 ms
53,928 KB
testcase_16 AC 123 ms
54,000 KB
testcase_17 AC 124 ms
54,144 KB
testcase_18 AC 109 ms
52,872 KB
testcase_19 AC 135 ms
54,264 KB
testcase_20 AC 122 ms
54,156 KB
testcase_21 AC 114 ms
52,972 KB
testcase_22 AC 122 ms
53,996 KB
testcase_23 AC 125 ms
54,116 KB
testcase_24 AC 127 ms
53,916 KB
testcase_25 AC 123 ms
54,040 KB
testcase_26 AC 128 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class RomeNumber {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		String S1 = s.next();
		int T = s.nextInt(),now = 0;
		s.close();
		if(S1.contains("V")){
			now += 5;
		}else if(S1.contains("X")){
			now += 10;
		}
		if(S1.contains("I")){
			now +=( S1.lastIndexOf("I") - S1.indexOf("I") + 1);
		}
		if(S1.equals("IX")){
			now = 9;
		}
		now += T;
		while(now < 0){
			now += 12;
			//System.out.println(now);
		}
		now %= 12;
		StringBuilder ans = new StringBuilder();
		if(now == 9){
			ans.append("IX");
		}else if(now == 0){
			ans.append("XII");
		}else if(now / 5 == 1){
			ans.append("V");
		}else if(now / 5 == 2){
			ans.append("X");
		}
		if(now != 9 && now != 0){
			for(int i = 0;i < now%5;i++){
				ans.append("I");
			}
		}
		System.out.println(ans);
	}

}
0