結果

問題 No.405 ローマ数字の腕時計
ユーザー HEGO55HEGO55
提出日時 2017-05-27 15:25:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-06 19:11:29
合計ジャッジ時間 6,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,052 KB
testcase_01 AC 108 ms
52,944 KB
testcase_02 AC 114 ms
53,624 KB
testcase_03 AC 124 ms
53,988 KB
testcase_04 AC 120 ms
54,104 KB
testcase_05 AC 122 ms
53,904 KB
testcase_06 AC 124 ms
54,120 KB
testcase_07 AC 125 ms
54,116 KB
testcase_08 AC 127 ms
54,012 KB
testcase_09 AC 125 ms
53,848 KB
testcase_10 AC 125 ms
54,268 KB
testcase_11 AC 121 ms
54,120 KB
testcase_12 AC 122 ms
53,924 KB
testcase_13 AC 122 ms
54,272 KB
testcase_14 AC 122 ms
53,960 KB
testcase_15 AC 123 ms
54,044 KB
testcase_16 AC 121 ms
54,152 KB
testcase_17 AC 120 ms
53,784 KB
testcase_18 AC 124 ms
54,044 KB
testcase_19 AC 124 ms
53,932 KB
testcase_20 AC 120 ms
53,940 KB
testcase_21 AC 127 ms
54,256 KB
testcase_22 AC 122 ms
54,152 KB
testcase_23 AC 125 ms
54,156 KB
testcase_24 AC 125 ms
54,040 KB
testcase_25 AC 119 ms
54,104 KB
testcase_26 AC 123 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class No405{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int t = 0;
		
		String[] S1List = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
		int[] TList     = {1,2,3,4,5,6,7,8,9,10,11,12};
			
		String S1 = sc.next();
		int T = sc.nextInt();
		
		for(int i=0; i<S1List.length; i++){
			if(S1List[i].equals(S1)){
				t = TList[i];
			}
		}
		
		int add = T + t;
		if(add>0){
			if(add<=12){
				System.out.println(S1List[add-1]);
			}else{
				while(add>12){
				   add -= 12;
				}
				System.out.println(S1List[add-1]);
			}
		}else if(add<0){
			while(add<=0){
			add += 12;
		}
			System.out.println(S1List[add-1]);
		}else{
			System.out.println(S1List[11]);
		}
	}
}
		
0