結果
| 問題 | No.18 うーさー暗号 | 
| コンテスト | |
| ユーザー |  FVRChan | 
| 提出日時 | 2017-07-27 08:03:14 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 247 bytes | 
| コンパイル時間 | 409 ms | 
| コンパイル使用メモリ | 57,340 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-07 06:34:54 | 
| 合計ジャッジ時間 | 874 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 13 | 
ソースコード
#include<iostream>
#include<string>
#include<algorithm>
#include<utility>
using namespace std;
int main(void){
	string s;
	cin>>s;
	for(int i=0;i<s.size();i++)
		for(int j=0;j<i+1;j++){
			s[i]--;
			if(s[i]=='A'-1)s[i]='Z';
		}
	cout<<s<<endl;
}
            
            
            
        