結果
| 問題 |
No.1469 programing
|
| コンテスト | |
| ユーザー |
nok0
|
| 提出日時 | 2021-04-04 11:06:11 |
| 言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 265 bytes |
| コンパイル時間 | 1,002 ms |
| コンパイル使用メモリ | 60,528 KB |
| 最終ジャッジ日時 | 2025-01-20 11:03:55 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp:3:10: fatal error: testlib.h: No such file or directory
3 | #include "testlib.h"
| ^~~~~~~~~~~
compilation terminated.
ソースコード
#include <bits/stdc++.h>
using namespace std;
#include "testlib.h"
string s, u;
int main() {
registerValidation();
s = inf.readString();
inf.readEof();
u = s[0];
for(int i = 1; i < (int)s.size(); i++)
if(s[i - 1] != s[i])
u += s[i];
cout << u << endl;
}
nok0