結果

問題 No.405 ローマ数字の腕時計
ユーザー shogo2022
提出日時 2017-01-21 05:47:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-06 19:09:23
合計ジャッジ時間 1,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

current, diff = input().split(' ')

diff_int = int(diff)

roman_list = ["I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"]

print(roman_list[(roman_list.index(current)+diff_int)%12])
0