結果

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

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <cstring>

typedef long long ll;
using namespace std;

#define mod 1000003
#define INF 1000000000
#define LLINF 2000000000000000000LL

#define SIZE 10000


int main(){
    string S,ans;
    
    cin >> S;
    
    for(int i=1;i<=S.size();i++){
        
        ans += (S[i-1]-'A'+2600-i)%26+'A';
        
    }
    
    cout << ans << endl;
    
    return 0;
}
0