結果

問題 No.18 うーさー暗号
ユーザー itok217itok217
提出日時 2017-05-05 09:59:46
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 57,088 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 06:30:08
合計ジャッジ時間 866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

int main() {
  string str;
  string output;
  cin >> str;
  for (int i = 0; i < str.length(); i++) {
    if (str[i] - ((i + 1) % 26) >= 'A') {
      output += str[i] - ((i + 1) % 26);
    } else {
      output += 'Z' - 'A' + str[i] - i % 26;
    }
  }
  cout << output << endl;
}
0