結果

問題 No.405 ローマ数字の腕時計
ユーザー sam_kino
提出日時 2016-08-30 14:59:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 222 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-24 04:10:31
合計ジャッジ時間 1,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8

sGets=input().split()

sTimes=[I,II,III,IIII,V,VI,VII,VIII,IX,X,XI,XII]
for i in sTimes:
    if sGets[0]==i:
        nStart=sTimes.index(i)

nMove_time=sGets[1]%24
nAns=(nStart+nMove_time)%12

print (nAns)
0