結果

問題 No.405 ローマ数字の腕時計
ユーザー otsunekootsuneko
提出日時 2021-05-07 15:20:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 53,436 KB
最終ジャッジ日時 2024-07-06 19:33:28
合計ジャッジ時間 1,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,992 KB
testcase_01 AC 34 ms
52,112 KB
testcase_02 AC 34 ms
53,284 KB
testcase_03 AC 35 ms
51,824 KB
testcase_04 AC 35 ms
52,488 KB
testcase_05 AC 35 ms
52,412 KB
testcase_06 AC 35 ms
52,148 KB
testcase_07 AC 35 ms
52,964 KB
testcase_08 AC 36 ms
52,384 KB
testcase_09 AC 35 ms
53,216 KB
testcase_10 AC 36 ms
53,420 KB
testcase_11 AC 35 ms
51,872 KB
testcase_12 AC 36 ms
53,216 KB
testcase_13 AC 35 ms
52,812 KB
testcase_14 AC 35 ms
52,540 KB
testcase_15 AC 35 ms
52,924 KB
testcase_16 AC 35 ms
52,728 KB
testcase_17 AC 35 ms
51,872 KB
testcase_18 AC 35 ms
53,016 KB
testcase_19 AC 35 ms
52,892 KB
testcase_20 AC 36 ms
52,276 KB
testcase_21 AC 36 ms
52,672 KB
testcase_22 AC 35 ms
52,560 KB
testcase_23 AC 35 ms
52,324 KB
testcase_24 AC 36 ms
52,744 KB
testcase_25 AC 36 ms
53,436 KB
testcase_26 AC 35 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

roman_n = {"I":1,"II":2,"III":3,"IIII":4,"V":5,"VI":6,"VII":7,"VIII":8,"IX":9,"X":10,"XI":11,"XII":0}
S1,T = map(str,input().split())
T = int(T)

now = roman_n[S1]
ans = [k for k,v in roman_n.items() if (now+T)%12 == v]
print(*ans)
0