結果
| 問題 |
No.494 yukicoder
|
| コンテスト | |
| ユーザー |
sper_air_reader
|
| 提出日時 | 2017-12-17 07:02:46 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 181 bytes |
| コンパイル時間 | 1,967 ms |
| コンパイル使用メモリ | 165,928 KB |
| 実行使用メモリ | 17,096 KB |
| 最終ジャッジ日時 | 2024-12-15 02:09:29 |
| 合計ジャッジ時間 | 29,707 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | TLE * 2 |
| other | RE * 1 TLE * 6 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
char s[]="yukicoder";
char x;
scanf("%s",&x);
for(int i=0;1;i++){
if(x=='?')printf("%c",s[i]);
}
return 0;
}
sper_air_reader