結果

問題 No.494 yukicoder
ユーザー sper_air_readersper_air_reader
提出日時 2017-12-17 06:47:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 197 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 163,920 KB
実行使用メモリ 17,088 KB
最終ジャッジ日時 2024-05-08 18:59:26
合計ジャッジ時間 7,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:7:10: warning: 'x' is used uninitialized [-Wuninitialized]
    7 |     scanf("%s",x);
      |     ~~~~~^~~~~~~~
main.cpp:5:8: note: 'x' was declared here
    5 |   char x;
      |        ^

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
  char s[]="yukicoder";
  char x;
  for(int i=0;1;i++){
    scanf("%s",x);
    if(x=='?'){
      printf("%s",&s[i]);
    }
  }
  return 0;
}
0