結果

問題 No.725 木は明らかに森である
ユーザー pinechanpinechan
提出日時 2018-09-06 23:58:05
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 624 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 29,568 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 12:37:46
合計ジャッジ時間 660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char const *argv[]) {
  int i,j;
  i=0;
  int f=0;
  char str[100];
  scanf("%s",str);
  while(i<(sizeof(str)/sizeof(char)-5)){
  for ( i = 0; i < sizeof(str)/sizeof(char); i++) {

    if(str[i]=='t'&&str[i+1]=='r'&&str[i+2]=='e'&&str[i+3]=='e'&&str[i+4]=='o'&&str[i+5]=='n'&&str[i+6]=='e'){
    f=1;
    break;
  }
  }
  if(f==1){
    str[i]='f';
    str[i+1]='o';
    str[i+2]='r';
    str[i+3]='e';
    str[i+4]='s';
    str[i+5]='t';
  }
  for ( j = i+6; j < sizeof(str)/sizeof(char)-1; j++) {
 str[j]=str[j+1];

}
i++;
f=0;
}
 printf("%s\n",str );
return 0;
}
0