結果

問題 No.405 ローマ数字の腕時計
ユーザー RinRin
提出日時 2016-09-09 10:10:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 2,959 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-06 19:05:09
合計ジャッジ時間 6,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
54,068 KB
testcase_01 AC 115 ms
53,964 KB
testcase_02 AC 121 ms
53,916 KB
testcase_03 AC 114 ms
53,848 KB
testcase_04 AC 107 ms
54,048 KB
testcase_05 AC 115 ms
54,100 KB
testcase_06 AC 112 ms
54,164 KB
testcase_07 AC 96 ms
52,276 KB
testcase_08 AC 109 ms
53,988 KB
testcase_09 AC 112 ms
54,024 KB
testcase_10 AC 112 ms
53,196 KB
testcase_11 AC 109 ms
52,968 KB
testcase_12 AC 112 ms
54,148 KB
testcase_13 AC 110 ms
53,908 KB
testcase_14 AC 110 ms
53,852 KB
testcase_15 AC 99 ms
52,816 KB
testcase_16 AC 113 ms
54,232 KB
testcase_17 AC 120 ms
53,844 KB
testcase_18 AC 115 ms
54,304 KB
testcase_19 AC 99 ms
52,996 KB
testcase_20 AC 103 ms
53,252 KB
testcase_21 AC 106 ms
52,868 KB
testcase_22 AC 110 ms
54,092 KB
testcase_23 AC 105 ms
53,488 KB
testcase_24 AC 101 ms
52,888 KB
testcase_25 AC 103 ms
52,736 KB
testcase_26 AC 108 ms
54,056 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