結果

問題 No.725 木は明らかに森である
ユーザー fel1_X_925fel1_X_925
提出日時 2018-12-13 20:07:21
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 22,708 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-25 09:31:37
合計ジャッジ時間 641 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
4,348 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
4,348 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |     scanf("%s", str);
      |     ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void)
{
    int i,j,k;
    char str[100] = "";
    char str2[100] = "";
    
    scanf("%s", str);
    
    for(i = 0; i < 101; i++){
        if(str[i] == 't'){
            if((str[i + 1] == 'r')||(str[i + 2] == 'e')||(str[i + 3] == 'e')||(str[i + 4] == 'o')||(str[i + 5] == 'n')||(str[i + 6] == 'e')){
                str2[i] = 'f';
                str2[i + 1] = 'o';
                str2[i + 2] = 'r';
                str2[i + 3] = 'e';
                str2[i + 4] = 's';
                str2[i + 5] = 't';
				i += 6;
            }
        }
        else{
            str2[i] = str[i];
        }
    }
    printf("%s\n", str2);
	return (0);
}
0