結果

問題 No.405 ローマ数字の腕時計
ユーザー fal_rndfal_rnd
提出日時 2017-03-31 15:35:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 75,124 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-07-06 19:10:10
合計ジャッジ時間 6,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
52,860 KB
testcase_01 AC 112 ms
54,136 KB
testcase_02 AC 113 ms
54,204 KB
testcase_03 AC 104 ms
53,100 KB
testcase_04 AC 99 ms
52,996 KB
testcase_05 AC 105 ms
52,892 KB
testcase_06 AC 114 ms
54,136 KB
testcase_07 AC 110 ms
54,132 KB
testcase_08 AC 109 ms
54,204 KB
testcase_09 AC 122 ms
54,092 KB
testcase_10 AC 113 ms
53,884 KB
testcase_11 AC 115 ms
54,188 KB
testcase_12 AC 109 ms
54,144 KB
testcase_13 AC 103 ms
52,952 KB
testcase_14 AC 115 ms
54,176 KB
testcase_15 AC 112 ms
53,924 KB
testcase_16 AC 109 ms
53,920 KB
testcase_17 AC 102 ms
53,048 KB
testcase_18 AC 101 ms
52,756 KB
testcase_19 AC 110 ms
53,896 KB
testcase_20 AC 111 ms
53,792 KB
testcase_21 AC 114 ms
54,128 KB
testcase_22 AC 101 ms
52,848 KB
testcase_23 AC 112 ms
54,328 KB
testcase_24 AC 105 ms
52,736 KB
testcase_25 AC 116 ms
53,900 KB
testcase_26 AC 105 ms
52,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.List;
import java.util.Scanner;

public class Main{

	static Scanner s=new Scanner(System.in);

	public static void main(String __[]){
		input();
		solve();
	}

	static List<String>	list=Arrays.asList("I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII");
	static String		s1;
	static int			t;

	private static void input(){
		s1=s.next();
		t=s.nextInt();
	}

	private static void solve(){
		System.out.println(list.get((list.indexOf(s1)+1200+t)%12));
	}
}
0