結果
問題 | No.1455 拡張ROTN |
ユーザー | 萩3 |
提出日時 | 2021-05-01 09:28:45 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 575 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 273,920 KB |
最終ジャッジ日時 | 2024-07-19 15:44:25 |
合計ジャッジ時間 | 4,014 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
59,520 KB |
testcase_01 | AC | 42 ms
59,776 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
import collections s = input() n = int(input()) trans = [None]*256 trans[ord('9')] = [ord(c) for c in 'CpCzNkSuTbEoA'] trans[ord('z')] = [ord('a')] trans[ord('Z')] = [ord('A')] for i in range(9): trans[ord(str(i))] = [ord(str(i+1))] ord_a = ord('a') ord_A = ord('A') for i in range(25): trans[ord_a+i] = [ord_a+i+1] trans[ord_A+i] = [ord_A+i+1] deq = collections.deque([ord(c) for c in s]) loop = n if n<=9 else 10 + (n-10)%26 for _ in range(n): for _ in range(len(deq)): deq.extend(trans[deq.popleft()]) print(*[chr(code) for code in deq],sep='')