結果

問題 No.494 yukicoder
ユーザー yuasa0000
提出日時 2019-03-04 15:15:59
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 56,580 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 13:28:16
合計ジャッジ時間 972 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
int main() {
	std::string S;
	std::string Answer = "yukicoder";
	std::cin >> S;
	for (int i = 0; i < S.size(); i++) {
		if (S.at(i) == '?') {
			std::cout << Answer.at(i) << std::endl;
		}
	}
	return 0;
}
0