結果
| 問題 |
No.494 yukicoder
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-02-25 13:23:14 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 239 bytes |
| コンパイル時間 | 672 ms |
| コンパイル使用メモリ | 55,260 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-26 00:37:29 |
| 合計ジャッジ時間 | 1,138 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main()
{
string g;
cin >> g;
string a = "yukicoder";
for (int i = 0; i < a.length(); i++)
{
if (g[i] == '?')
{
cout << a[i] << endl;
break;
}
}
return 0;
}