結果

問題 No.405 ローマ数字の腕時計
ユーザー RinRin
提出日時 2016-09-02 18:10:45
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 376 bytes
コンパイル時間 3,574 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-12-24 04:11:28
合計ジャッジ時間 8,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,332 KB
testcase_01 AC 142 ms
42,848 KB
testcase_02 RE -
testcase_03 AC 135 ms
43,204 KB
testcase_04 AC 139 ms
43,032 KB
testcase_05 AC 135 ms
43,092 KB
testcase_06 AC 138 ms
42,952 KB
testcase_07 AC 139 ms
43,044 KB
testcase_08 AC 135 ms
42,924 KB
testcase_09 AC 132 ms
42,868 KB
testcase_10 AC 127 ms
41,784 KB
testcase_11 AC 135 ms
42,908 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 135 ms
43,240 KB
testcase_20 AC 137 ms
43,204 KB
testcase_21 AC 146 ms
43,032 KB
testcase_22 AC 139 ms
42,856 KB
testcase_23 AC 136 ms
43,028 KB
testcase_24 AC 136 ms
43,020 KB
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

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++;
		}
		System.out.println(foo[(i + t) % 12]);
	}
}
0