結果
問題 | No.2034 Anti Lexicography |
ユーザー |
![]() |
提出日時 | 2022-08-29 21:46:43 |
言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 7 ms / 2,000 ms |
コード長 | 222 bytes |
コンパイル時間 | 4,410 ms |
コンパイル使用メモリ | 161,856 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 18:58:59 |
合計ジャッジ時間 | 5,857 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int N; string S; cin >> N >> S; for(int i = 0; i < N; i++){ cout << (char) (219 - S[i]); } cout << "\n"; }