結果

問題 No.2034 Anti Lexicography
ユーザー atjh16
提出日時 2022-09-20 12:15:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 191,760 KB
最終ジャッジ日時 2025-02-07 13:01:56
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n;
string s, t;

int main() {
	cin >> n >> s;

	for (int i = 0; i < s.size(); i++) {		
		t.push_back(char(122 - s[i] + 'a'));
	}

	cout << t << endl;
}
0