結果

問題 No.2034 Anti Lexicography
ユーザー neginagineginagi
提出日時 2022-08-19 12:55:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 121,164 KB
最終ジャッジ日時 2024-10-07 17:22:46
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
86,164 KB
testcase_01 AC 123 ms
86,528 KB
testcase_02 AC 123 ms
86,400 KB
testcase_03 AC 121 ms
86,432 KB
testcase_04 AC 122 ms
86,488 KB
testcase_05 AC 161 ms
120,448 KB
testcase_06 AC 163 ms
120,576 KB
testcase_07 AC 162 ms
120,276 KB
testcase_08 AC 164 ms
120,664 KB
testcase_09 AC 162 ms
120,684 KB
testcase_10 AC 161 ms
121,164 KB
testcase_11 AC 163 ms
120,580 KB
testcase_12 AC 165 ms
120,180 KB
testcase_13 AC 126 ms
87,168 KB
testcase_14 AC 124 ms
87,168 KB
testcase_15 AC 126 ms
87,336 KB
testcase_16 AC 127 ms
87,324 KB
testcase_17 AC 128 ms
86,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)
INF = float("INF")
MOD = 10 ** 9 + 7
MOD2 = 998244353
from heapq import heappop, heappush
import math
from collections import Counter, deque
from itertools import accumulate, combinations, combinations_with_replacement, permutations
from bisect import bisect_left, bisect_right
import decimal

n = int(input())
s = list(map(lambda x : ord(x) - ord("a"), list(input().rstrip())))
trns = [chr(25 - i + ord("a")) for i in range(26)]
ans = []
for i in range(n):
    ans.append(trns[s[i]])

print("".join(ans))
0