結果
問題 |
No.405 ローマ数字の腕時計
|
ユーザー |
![]() |
提出日時 | 2020-05-09 19:58:51 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 174 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-06 19:28:22 |
合計ジャッジ時間 | 1,467 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
Time = ["I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"] S1, T = input().split() now = Time.index(S1) + 1 fut = now + int(T) modt = fut%12 print(Time[modt-1])