結果

問題 No.405 ローマ数字の腕時計
ユーザー RinRin
提出日時 2016-09-09 10:09:52
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 453 bytes
コンパイル時間 3,720 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 56,044 KB
最終ジャッジ日時 2024-12-24 04:16:30
合計ジャッジ時間 8,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
53,752 KB
testcase_01 AC 142 ms
53,964 KB
testcase_02 AC 144 ms
53,968 KB
testcase_03 AC 143 ms
54,024 KB
testcase_04 AC 142 ms
53,820 KB
testcase_05 AC 142 ms
53,920 KB
testcase_06 AC 141 ms
53,936 KB
testcase_07 AC 147 ms
54,568 KB
testcase_08 AC 143 ms
54,104 KB
testcase_09 AC 143 ms
54,128 KB
testcase_10 AC 144 ms
54,036 KB
testcase_11 RE -
testcase_12 AC 144 ms
53,828 KB
testcase_13 AC 143 ms
53,660 KB
testcase_14 AC 143 ms
53,928 KB
testcase_15 AC 143 ms
54,188 KB
testcase_16 AC 145 ms
54,036 KB
testcase_17 AC 144 ms
54,036 KB
testcase_18 AC 143 ms
53,944 KB
testcase_19 AC 142 ms
53,984 KB
testcase_20 RE -
testcase_21 AC 142 ms
54,032 KB
testcase_22 RE -
testcase_23 AC 141 ms
53,892 KB
testcase_24 RE -
testcase_25 AC 139 ms
54,072 KB
testcase_26 AC 144 ms
53,816 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) % 12)]);
	}
}
0