結果

問題 No.405 ローマ数字の腕時計
ユーザー RinRin
提出日時 2016-09-02 18:10:45
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 376 bytes
コンパイル時間 3,014 ms
コンパイル使用メモリ 79,240 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-06 12:30:13
合計ジャッジ時間 7,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,072 KB
testcase_01 AC 108 ms
40,504 KB
testcase_02 RE -
testcase_03 AC 117 ms
41,228 KB
testcase_04 AC 115 ms
41,104 KB
testcase_05 AC 121 ms
40,924 KB
testcase_06 AC 104 ms
40,088 KB
testcase_07 AC 126 ms
41,512 KB
testcase_08 AC 124 ms
41,112 KB
testcase_09 AC 123 ms
41,188 KB
testcase_10 AC 120 ms
41,228 KB
testcase_11 AC 119 ms
41,164 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 117 ms
41,016 KB
testcase_20 AC 121 ms
41,196 KB
testcase_21 AC 112 ms
40,084 KB
testcase_22 AC 123 ms
41,116 KB
testcase_23 AC 121 ms
41,112 KB
testcase_24 AC 121 ms
41,024 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