結果
| 問題 |
No.494 yukicoder
|
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2019-03-19 22:50:28 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 326 bytes |
| コンパイル時間 | 573 ms |
| コンパイル使用メモリ | 64,632 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-14 12:09:53 |
| 合計ジャッジ時間 | 1,327 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <iostream>
#include <cstdlib>
#include <vector>
#include <algorithm>
#include <cmath>
int main()
{
std::string a = "yukicoder";
std::string s;
std::cin >> s;
for(int i = 0; i < 9; i++){
if(s[i] == '?'){
std::cout << a[i];
}
}
std::cout <<std::endl;
return 0;
}