結果

問題 No.2034 Anti Lexicography
ユーザー McGregorshMcGregorsh
提出日時 2022-08-12 23:31:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 450 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 262,064 KB
最終ジャッジ日時 2024-09-23 04:11:23
合計ジャッジ時間 4,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,472 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

###関数コピーしたか?###
def main():
   
   n = int(input())
   s = input()
   ans = {'a':'z', 'b':'y', 'c':'x', 'd':'w', 'e':'v', 'f':'u', 'g':'t', 'h':'s', 'i':'r', 'j':'q', 'k':'p', 'l':'o', 'm':'n', 'n':'m', 'o':'l', 'p':'k', 'q':'j', 'r':'i', 's':'h', 't':'g', 'u':'f', 'v':'e', 'w':'d', 'x':'c', 'y':'b', 'z':'a'}
   
   line = ''
   for i in range(n):
   	  line += ans[s[i]]
   print(line)
   
if __name__ == '__main__':
    main()

0