結果
| 問題 | No.1469 programing |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-19 14:15:52 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 208 bytes |
| 記録 | |
| コンパイル時間 | 126 ms |
| コンパイル使用メモリ | 37,056 KB |
| 最終ジャッジ日時 | 2026-02-22 13:20:38 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 14 TLE * 1 |
ソースコード
#include <stdio.h>
#include <string.h>
void main(void) {
char str[999999] = "a";
scanf("%s",str);
int i = 0;
while(i < (int)strlen(str)){
if(str[i] != str[i-1]){
printf("%c",str[i]);
}
i++;
}
}
Maeda