結果
| 問題 |
No.494 yukicoder
|
| コンテスト | |
| ユーザー |
mkan
|
| 提出日時 | 2017-03-28 17:04:16 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 420 bytes |
| コンパイル時間 | 660 ms |
| コンパイル使用メモリ | 75,548 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-06 13:22:40 |
| 合計ジャッジ時間 | 1,003 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 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;
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