結果

問題 No.405 ローマ数字の腕時計
ユーザー RinRin
提出日時 2016-09-02 18:15:04
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 446 bytes
コンパイル時間 4,025 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-12-24 04:11:46
合計ジャッジ時間 9,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,052 KB
testcase_01 AC 139 ms
54,080 KB
testcase_02 AC 139 ms
53,992 KB
testcase_03 AC 139 ms
54,200 KB
testcase_04 AC 142 ms
53,772 KB
testcase_05 AC 153 ms
53,904 KB
testcase_06 AC 146 ms
54,184 KB
testcase_07 AC 143 ms
53,908 KB
testcase_08 AC 147 ms
54,068 KB
testcase_09 AC 143 ms
54,120 KB
testcase_10 AC 139 ms
53,816 KB
testcase_11 RE -
testcase_12 AC 143 ms
53,940 KB
testcase_13 AC 142 ms
53,952 KB
testcase_14 AC 143 ms
53,780 KB
testcase_15 AC 145 ms
54,064 KB
testcase_16 AC 140 ms
53,644 KB
testcase_17 AC 141 ms
53,928 KB
testcase_18 AC 148 ms
54,076 KB
testcase_19 AC 143 ms
54,112 KB
testcase_20 RE -
testcase_21 AC 140 ms
53,784 KB
testcase_22 RE -
testcase_23 AC 144 ms
53,820 KB
testcase_24 RE -
testcase_25 AC 143 ms
54,216 KB
testcase_26 AC 140 ms
54,072 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