結果
問題 | No.2034 Anti Lexicography |
ユーザー | yansi819 |
提出日時 | 2024-03-20 11:46:51 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 268 bytes |
コンパイル時間 | 3,674 ms |
コンパイル使用メモリ | 262,504 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-30 06:03:02 |
合計ジャッジ時間 | 4,841 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 |
ソースコード
#include <bits/stdc++.h>#include <atcoder/all>using namespace std;using namespace atcoder;using ll = long long;int N;string S;int main() {cin >> N >> S;for (int i = 0; i < N; i++) {cout << char('z' - (S[i] - 'a'));}cout << endl;return 0;}