結果
問題 | No.494 yukicoder |
ユーザー |
![]() |
提出日時 | 2019-09-26 18:46:42 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 191 bytes |
コンパイル時間 | 1,607 ms |
コンパイル使用メモリ | 160,220 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-23 08:05:23 |
合計ジャッジ時間 | 1,757 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
#include "bits/stdc++.h" using namespace std; int main(){ string s ="yukicoder"; string t; cin >>t; for(int i=0;i<t.size();i++){ if(t.at(i)=='?'){ cout <<s.at(i)<<endl; } } }