結果

問題 No.405 ローマ数字の腕時計
ユーザー nCk_cvnCk_cv
提出日時 2016-08-27 14:30:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-07-06 19:03:40
合計ジャッジ時間 5,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,040 KB
testcase_01 AC 105 ms
52,796 KB
testcase_02 AC 120 ms
54,108 KB
testcase_03 AC 114 ms
54,132 KB
testcase_04 AC 121 ms
54,132 KB
testcase_05 AC 124 ms
54,040 KB
testcase_06 AC 119 ms
54,028 KB
testcase_07 AC 122 ms
54,128 KB
testcase_08 AC 119 ms
54,056 KB
testcase_09 AC 112 ms
52,776 KB
testcase_10 AC 121 ms
54,240 KB
testcase_11 AC 119 ms
54,000 KB
testcase_12 AC 125 ms
54,336 KB
testcase_13 AC 122 ms
53,860 KB
testcase_14 AC 125 ms
54,164 KB
testcase_15 AC 124 ms
54,028 KB
testcase_16 AC 123 ms
54,176 KB
testcase_17 AC 110 ms
53,004 KB
testcase_18 AC 109 ms
52,884 KB
testcase_19 AC 125 ms
53,956 KB
testcase_20 AC 120 ms
54,004 KB
testcase_21 AC 125 ms
54,504 KB
testcase_22 AC 110 ms
52,836 KB
testcase_23 AC 124 ms
54,024 KB
testcase_24 AC 123 ms
54,072 KB
testcase_25 AC 122 ms
53,988 KB
testcase_26 AC 119 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
		static String[] ti = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
		public static void main(String[] args) {
			Scanner sc = new Scanner(System.in);
			String S1 = sc.next();
			int t = sc.nextInt();
			int a = 0;
			for(int i = 0; i < ti.length; i++) {
				if(S1.equals(ti[i])) {
					a = i+1;
					break;
				}
			}
			a += t;
			a %= 12;
			if(a <= 0) a += 12;
			a -= 1;
			if(a == 0) a = 0;
			System.out.println(ti[a]);
		}
}
0