結果

問題 No.494 yukicoder
ユーザー mkanmkan
提出日時 2017-03-28 17:02:23
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 442 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 68,884 KB
実行使用メモリ 814,416 KB
最終ジャッジ日時 2023-09-20 18:29:15
合計ジャッジ時間 3,594 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <queue>
#include <vector>
#include <cmath>
#include <cctype>
#define rep(i,a,b) for(int i=(a);i<b;i++)
#define INF 1000000000
#define MAX_N 100000000
using namespace std;
bool debug=false;

vector<int>G[MAX_N];

int main(){
  string s="yukicoder",ss;
  cin>>ss;
  for(int i=0;i<s.size();i++){
    if(ss[i]=='?'){
      cout<<s[i]<<endl;
      break;
    }
  }
  return 0;
}
0