結果
| 問題 | No.18 うーさー暗号 | 
| コンテスト | |
| ユーザー |  sawa_tsuka | 
| 提出日時 | 2017-08-15 21:24:07 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 355 bytes | 
| コンパイル時間 | 1,702 ms | 
| コンパイル使用メモリ | 157,844 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-07-07 06:35:53 | 
| 合計ジャッジ時間 | 1,955 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 13 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define in(n) cin>>n
#define REP(sfx,n) for(sfx=0;sfx<n;sfx++)
#define FOR(sfx,arr) for(auto &sfx:arr)
#define ALLITR(arr) (arr.begin()),(ar.end())
int main(){
    int c;
	for(int i=1;(c=getchar())!=10;i++){
	    cout<<(char)((c-'A'+1300-i)%26+'A');
	}
}
            
            
            
        