結果
| 問題 | 
                            No.2034 Anti Lexicography
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Sigma_Arf
                         | 
                    
| 提出日時 | 2022-08-12 21:47:33 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 1,078 ms / 2,000 ms | 
| コード長 | 116 bytes | 
| コンパイル時間 | 131 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 13,224 KB | 
| 最終ジャッジ日時 | 2024-09-23 02:03:07 | 
| 合計ジャッジ時間 | 8,844 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 15 | 
ソースコード
N=int(input())
S=str(input())
C=[219-ord(S[i]) for i in range(N)]
D=""
for i in range(N):
    D+=chr(C[i])
print(D)
            
            
            
        
            
Sigma_Arf