結果
| 問題 | No.494 yukicoder |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-03-19 22:50:28 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 326 bytes |
| 記録 | |
| コンパイル時間 | 562 ms |
| コンパイル使用メモリ | 87,704 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-04 12:29:03 |
| 合計ジャッジ時間 | 1,005 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
}