結果

問題 No.2268 NGワード回避
ユーザー Nzt3
提出日時 2023-04-15 17:26:56
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 1,682 ms
コンパイル使用メモリ 192,524 KB
最終ジャッジ日時 2025-02-12 08:56:46
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 52
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  string ans="",S;
  for(int i=0;i<N;i++){
    cin>>S;
    ans.push_back(195-S[i]);
  }
  cout<<ans<<'\n';
}
0