結果
| 問題 | No.1455 拡張ROTN |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-21 15:27:06 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 355 bytes |
| コンパイル時間 | 603 ms |
| コンパイル使用メモリ | 12,032 KB |
| 実行使用メモリ | 16,256 KB |
| 最終ジャッジ日時 | 2025-03-21 15:27:10 |
| 合計ジャッジ時間 | 4,285 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | TLE * 1 -- * 21 |
ソースコード
def convert(S):
c = "CpCzNkSuTbEoA"
t = ""
for s in S:
if s == "z":
t += "a"
elif s == "Z":
t += "A"
elif s == "9":
t += c
else:
t += chr(ord(s)+1)
return t
S = list(input())
n = int(input())
for i in range(n):
S = convert(S)
print(S)