結果

問題 No.18 うーさー暗号
ユーザー sora410_tsora410_t
提出日時 2020-03-29 17:04:47
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 424 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 60,800 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-02 15:25:20
合計ジャッジ時間 1,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
using namespace std;

char shift(const char c, const int i) {
	auto ci = static_cast<int>(c);
	auto ai = static_cast<int>('A');
	auto offset = ci - ai;
	auto shifted = static_cast<char>((offset + 26*1024 - i) % 26 + ai);
	return shifted;
}

int main() {
	string s;
	cin >> s;
	
	for (int i = 0; i < s.size(); ++i) {
		cout << shift(s[i], i+1); 
	}
	cout << endl;
}
0