結果

問題 No.2034 Anti Lexicography
ユーザー kotatsugame
提出日時 2022-08-12 21:26:20
言語 Bash
(Bash 5.2.21)
結果
RE  
実行時間 -
コード長 137 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-23 00:47:24
合計ジャッジ時間 774 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int main()
{
	int N;
	cin>>N;
	string S;
	cin>>S;
	for(char&c:S)c='z'-(c-'a');
	cout<<S<<endl;
}
0