結果

問題 No.18 うーさー暗号
ユーザー Respect2DRespect2D
提出日時 2014-11-21 00:49:28
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 55,032 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-07 05:32:18
合計ジャッジ時間 933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
  string s;
  while(cin >> s){
    for(int i = 0; i < s.size(); i++){
      int add = ((i + 1) / 26 + 1) * 26;

      int pos = (s[i] - 'A' - (i + 1) + add) % 26;
      cout << (char)('A' + pos);
    }
    cout << endl;
  }
}
0