結果

問題 No.405 ローマ数字の腕時計
ユーザー RinRin
提出日時 2016-09-02 18:15:04
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 446 bytes
コンパイル時間 3,888 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-06-06 12:30:33
合計ジャッジ時間 8,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,104 KB
testcase_01 AC 119 ms
39,832 KB
testcase_02 AC 132 ms
41,372 KB
testcase_03 AC 133 ms
41,372 KB
testcase_04 AC 133 ms
41,048 KB
testcase_05 AC 134 ms
40,804 KB
testcase_06 AC 135 ms
41,508 KB
testcase_07 AC 137 ms
41,096 KB
testcase_08 AC 139 ms
41,160 KB
testcase_09 AC 139 ms
40,800 KB
testcase_10 AC 140 ms
41,000 KB
testcase_11 RE -
testcase_12 AC 136 ms
40,768 KB
testcase_13 AC 136 ms
41,504 KB
testcase_14 AC 134 ms
40,996 KB
testcase_15 AC 135 ms
41,124 KB
testcase_16 AC 135 ms
40,748 KB
testcase_17 AC 133 ms
40,960 KB
testcase_18 AC 133 ms
41,380 KB
testcase_19 AC 134 ms
40,632 KB
testcase_20 RE -
testcase_21 AC 134 ms
40,764 KB
testcase_22 RE -
testcase_23 AC 133 ms
40,876 KB
testcase_24 RE -
testcase_25 AC 133 ms
41,188 KB
testcase_26 AC 133 ms
40,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class b {
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		String foo[] = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
		String s = sc.next();
		int t = sc.nextInt();
		int i = 0;
		while(true){
			if(foo[i].equals(s))
				break;
			i++;
		}
		if(t >= 0)
			System.out.println(foo[(i + t) % 12]);
		else
			System.out.println(foo[12 + ((i + t) % 12)]);
	}
}
0