結果

問題 No.18 うーさー暗号
ユーザー ZackeyKeiZackeyKei
提出日時 2015-12-21 17:26:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 63,716 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-07 05:55:21
合計ジャッジ時間 1,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <algorithm>
#include <vector>
#include <string>
#include <cstring>
#include <iostream>

int main()
{
	using namespace std;

	string s;
	vector<char> ans;

	cin >> s;
	for (int i = 0; i < s.size(); i++)
	{
		int number = (s[i] - 'A' - (i % 26) + 26 - 1) % 26;
		ans.push_back('A' + number);
		//ans.push_back(s.c_str()[i] - (i + 1));
	}
	for (int i = 0; i < ans.size(); i++)
	{
		printf("%c", ans[i]);
	}
	printf("\n");
}
0