結果

問題 No.18 うーさー暗号
ユーザー masa
提出日時 2015-01-22 16:14:12
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 234 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 55,724 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 00:19:32
合計ジャッジ時間 995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;

int main() {
	string str;

	cin >> str;
	for (int i = 0; i < str.size(); i++) {
		str[i] = 'A' + ((str[i] - 'A' - i) % 26 + 26) % 26;
	}

	cout << str << endl;
	return 0;
}
0