結果

問題 No.405 ローマ数字の腕時計
ユーザー tkr182tkr182
提出日時 2019-09-20 02:45:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 127 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 10,540 KB
実行使用メモリ 7,972 KB
最終ジャッジ日時 2023-10-11 07:22:59
合計ジャッジ時間 2,910 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 16 ms
7,828 KB
testcase_04 AC 15 ms
7,820 KB
testcase_05 AC 15 ms
7,736 KB
testcase_06 AC 15 ms
7,784 KB
testcase_07 AC 15 ms
7,904 KB
testcase_08 AC 16 ms
7,804 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 16 ms
7,904 KB
testcase_12 AC 15 ms
7,796 KB
testcase_13 AC 16 ms
7,876 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 15 ms
7,772 KB
testcase_17 AC 16 ms
7,836 KB
testcase_18 RE -
testcase_19 AC 15 ms
7,848 KB
testcase_20 AC 16 ms
7,832 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 16 ms
7,776 KB
testcase_24 AC 16 ms
7,796 KB
testcase_25 RE -
testcase_26 AC 16 ms
7,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=["I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"]*2
a,b=map(str,input().split())
print(t[t.index(a)+int(b)])
0