結果

問題 No.1217 せしすせそ
ユーザー _youte_ne
提出日時 2021-04-16 03:20:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 64,000 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 10:59:33
合計ジャッジ時間 991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
int main() {
	string S;
	cin >> S;
	//a 97
	for (int i = 0; i < 26; ++i) {
		
		if (S[i] != i + 97) {
			char temp;
			cout << (temp = (i + 97)) << "to" << S[i] << endl;
		}
	}
	

}
0