結果

問題 No.405 ローマ数字の腕時計
ユーザー nCk_cvnCk_cv
提出日時 2016-08-27 14:29:59
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 503 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,660 KB
最終ジャッジ日時 2024-06-06 12:29:31
合計ジャッジ時間 6,733 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 131 ms
53,784 KB
testcase_03 AC 132 ms
53,708 KB
testcase_04 AC 128 ms
54,220 KB
testcase_05 AC 132 ms
53,932 KB
testcase_06 AC 133 ms
53,936 KB
testcase_07 AC 135 ms
53,960 KB
testcase_08 AC 129 ms
53,756 KB
testcase_09 AC 130 ms
54,056 KB
testcase_10 AC 134 ms
53,692 KB
testcase_11 RE -
testcase_12 AC 133 ms
53,844 KB
testcase_13 AC 133 ms
53,896 KB
testcase_14 AC 134 ms
53,880 KB
testcase_15 AC 133 ms
54,044 KB
testcase_16 AC 132 ms
53,800 KB
testcase_17 AC 130 ms
53,956 KB
testcase_18 AC 129 ms
53,748 KB
testcase_19 AC 131 ms
54,504 KB
testcase_20 RE -
testcase_21 AC 128 ms
53,960 KB
testcase_22 RE -
testcase_23 AC 135 ms
54,108 KB
testcase_24 AC 135 ms
53,816 KB
testcase_25 AC 131 ms
53,688 KB
testcase_26 AC 126 ms
53,980 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 = 12;
			System.out.println(ti[a]);
		}
}
0