結果

問題 No.725 木は明らかに森である
ユーザー pengin_2000pengin_2000
提出日時 2019-07-06 23:15:57
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 28,136 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-07-24 19:51:24
合計ジャッジ時間 1,139 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include<stdio.h>
#include<string.h>
int main()
{
	char s[102];
	scanf("%s", s);
	int i, n = strlen(s);
	int m = 0;
	char t[102];
	for (i = 0; i < n; i++)
	{
		if (i < n - 6)
		{
			if (s[i] == 't' && s[i + 1] == 'r' && s[i + 2] == 'e' && s[i + 3] == 'e' && s[i + 4] == 'o' && s[i + 5] == 'n' && s[i + 6] == 'e')
			{
				t[m] = 'f';
				t[m + 1] = 'o';
				t[m + 2] = 'r';
				t[m + 3] = 'e';
				t[m + 4] = 's';
				t[m + 5] = 't';
				m += 6;
				i += 6;
			}
			else
			{
				t[m] = s[i];
				m++;
			}
		}
		else
		{
			t[m] = s[i];
			m++;
		}
	}
	t[m] = '\0';
	printf("%s\n", t);
	return 0;
}
0