結果

問題 No.1455 拡張ROTN
ユーザー 沙耶花
提出日時 2021-03-31 21:09:18
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,027 bytes
コンパイル時間 5,688 ms
コンパイル使用メモリ 250,632 KB
最終ジャッジ日時 2025-01-20 02:36:06
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000



int main(){
	
	string s;
	cin>>s;
	
	long long N;
	cin>>N;
	
	rep(i,20){
		if(N==0)break;
		N--;
		
		string t = "";
		rep(j,s.size()){
			char c = s[j];
			if(islower(c)){
				if(c=='z')c = 'a';
				else c++;
				t += c;
			}
			else if(isupper(c)){
				if(c=='Z')c = 'Z';
				else c++;
				t += c;
			}
			else{
				if(c=='9'){
					t += "CpCzNkSuTbEoA";
				}
				else{
					c++;
					t += c;
				}
			}
		}
		s = t;
	}
	
	N %= 26;
	
	rep(i,N){
		string t = "";
		rep(j,s.size()){
			char c = s[j];
			if(islower(c)){
				if(c=='z')c = 'a';
				else c++;
				t += c;
			}
			else if(isupper(c)){
				if(c=='Z')c = 'Z';
				else c++;
				t += c;
			}
			else{
				if(c=='9'){
					t += "CpCzNkSuTbEoA";
				}
				else{
					c++;
					t += c;
				}
			}
		}
		s = t;
	}
	
	cout<<s<<endl;
			
	
    return 0;
}
0