結果
問題 | No.494 yukicoder |
ユーザー |
|
提出日時 | 2017-04-13 19:15:57 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 186 bytes |
コンパイル時間 | 148 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 12:57:29 |
合計ジャッジ時間 | 580 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
#include <stdio.h> int main(void){ char str[10]; char ans[]="yukicoder"; int i; scanf("%s",str); for(i=0;str[i]!=0;i++){ if(str[i]=='?') printf("%c",ans[i]); } return 0; }