結果

問題 No.18 うーさー暗号
ユーザー kazuppakazuppa
提出日時 2024-06-02 07:30:42
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 224 bytes
コンパイル時間 4,630 ms
コンパイル使用メモリ 271,448 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-02 07:30:54
合計ジャッジ時間 10,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  string s;cin>>s;
  for(int i=0;i<s.size();i++){
    if((int)(s[i]-'A')<i+1){
      while(s[i]-'A'<i+1)
      s[i]+=26;
    }
    s[i]-=i+1;
  }
  cout<<s<<endl;
}
0