結果
| 問題 | 
                            No.725 木は明らかに森である
                             | 
                    
| コンテスト | |
| ユーザー | 
                             pinechan
                         | 
                    
| 提出日時 | 2018-09-07 00:02:59 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 669 bytes | 
| コンパイル時間 | 143 ms | 
| コンパイル使用メモリ | 24,064 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-24 12:35:09 | 
| 合計ジャッジ時間 | 654 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 7 WA * 2 | 
コンパイルメッセージ
main.cpp: In function ‘int main(int, const char**)’:
main.cpp:10:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |   scanf("%s",str);
      |   ~~~~~^~~~~~~~~~
            
            ソースコード
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char const *argv[]) {
  int i,j;
  i=0;
  int f=0;
  char str[100];
  do {
  scanf("%s",str);
}while(sizeof(str)/sizeof(char)>100);
  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;
}
            
            
            
        
            
pinechan