結果
| 問題 |
No.494 yukicoder
|
| コンテスト | |
| ユーザー |
nxteru
|
| 提出日時 | 2017-03-26 12:17:55 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 158 bytes |
| コンパイル時間 | 243 ms |
| コンパイル使用メモリ | 27,264 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-06 06:25:22 |
| 合計ジャッジ時間 | 569 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | AC * 1 WA * 6 |
ソースコード
#include <stdio.h>
int main(void){
char a,b[10]="yukicoder";
for(int i=0;i<10;i++){
if(getchar()=='?')
printf("%c\n",b[i]);
break;
}
}
nxteru