結果
| 問題 | No.993 青色 |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-18 17:34:15 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 257 bytes |
| 記録 | |
| コンパイル時間 | 147 ms |
| コンパイル使用メモリ | 37,088 KB |
| 最終ジャッジ日時 | 2026-02-22 13:19:33 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 8 |
ソースコード
#include <stdio.h>
#include <string.h>
void main(void){
char str[100] = "a";
scanf("%s",str);
int i = 0;
while(i < (int)strlen(str)){
if(str[i] == 'a' && str[i+1] == 'o'){
printf("ki");
i += 2;
}else{
printf("%c",str[i]);
i++;
}
}
}
Maeda