結果
| 問題 | No.494 yukicoder |
| コンテスト | |
| ユーザー |
sasa
|
| 提出日時 | 2025-03-13 16:56:12 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 237 bytes |
| 記録 | |
| コンパイル時間 | 53 ms |
| コンパイル使用メモリ | 35,456 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-23 16:05:27 |
| 合計ジャッジ時間 | 2,251 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 7 |
ソースコード
#include <stdio.h>
#include <string.h>
int main(){
char *ans = "yukicoder";
char *str;
scanf("%s",str);
int len = strlen(ans);
while(*str != '\0'){
if(*ans != *str){
printf("%s",*ans);
return 0;
}
ans++;
str++;
}
}
sasa