結果
問題 |
No.405 ローマ数字の腕時計
|
ユーザー |
![]() |
提出日時 | 2016-10-15 15:37:47 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 189 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-06 19:06:48 |
合計ジャッジ時間 | 1,779 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
s,t=input().split() t=int(t) roma=["XII","I","II","III","IIII","V","VI","VII","VIII","IX","X","XI"] inte=0 for i in range(12): if s==roma[i]: inte=i inte+=t print(roma[inte%12])