結果
| 問題 | No.494 yukicoder |
| コンテスト | |
| ユーザー |
mkan
|
| 提出日時 | 2017-03-28 17:02:23 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 442 bytes |
| 記録 | |
| コンパイル時間 | 767 ms |
| コンパイル使用メモリ | 91,536 KB |
| 実行使用メモリ | 1,308,032 KB |
| 最終ジャッジ日時 | 2026-03-28 02:48:37 |
| 合計ジャッジ時間 | 3,405 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | MLE * 2 |
| other | -- * 7 |
ソースコード
#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;
}
mkan