結果

問題 No.18 うーさー暗号
ユーザー おんそくちゃんおんそくちゃん
提出日時 2017-01-10 04:05:31
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 303 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 55,336 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-07 06:23:21
合計ジャッジ時間 889 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

//No.18 うーさー暗号
#include<iostream>
#include<string.h>

int main() {
	int str;
	char S[1024];
	std::cin >> S;
	str = strlen(S);
	for(int i=0;i<str;i++){
	if (S[i] - 65 >= (i + 1) % 26) S[i] -= (i + 1) % 26;
	else S[i] = S[i] + 26 - ((i + 1) % 26);
}
	std::cout << S << std::endl;	
	return 0;
}
0