結果

問題 No.405 ローマ数字の腕時計
ユーザー ぴろずぴろず
提出日時 2016-08-16 21:38:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-07-06 19:03:17
合計ジャッジ時間 5,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,176 KB
testcase_01 AC 115 ms
41,408 KB
testcase_02 AC 108 ms
41,324 KB
testcase_03 AC 116 ms
41,340 KB
testcase_04 AC 102 ms
41,296 KB
testcase_05 AC 110 ms
41,556 KB
testcase_06 AC 112 ms
41,500 KB
testcase_07 AC 108 ms
41,492 KB
testcase_08 AC 114 ms
41,460 KB
testcase_09 AC 118 ms
41,208 KB
testcase_10 AC 104 ms
41,424 KB
testcase_11 AC 114 ms
41,208 KB
testcase_12 AC 113 ms
41,300 KB
testcase_13 AC 104 ms
41,472 KB
testcase_14 AC 113 ms
41,496 KB
testcase_15 AC 113 ms
41,624 KB
testcase_16 AC 112 ms
41,184 KB
testcase_17 AC 117 ms
41,276 KB
testcase_18 AC 107 ms
41,256 KB
testcase_19 AC 113 ms
41,308 KB
testcase_20 AC 113 ms
40,048 KB
testcase_21 AC 119 ms
41,504 KB
testcase_22 AC 116 ms
41,580 KB
testcase_23 AC 116 ms
41,292 KB
testcase_24 AC 115 ms
40,280 KB
testcase_25 AC 114 ms
41,376 KB
testcase_26 AC 104 ms
41,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no405;

import java.util.Scanner;

public class Main {
	public static final String[] ROMAN = {"","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 s = sc.next();
		int t = sc.nextInt();
		int h = 0;
		for(int i=1;i<ROMAN.length;i++) {
			if (ROMAN[i].equals(s)) {
				h = i;
				break;
			}
		}
		h = ((h + t) % 12 + 12) % 12;
		System.out.println(ROMAN[h == 0 ? 12 : h]);
	}

}
0