結果
問題 |
No.1591 Two Digits
|
ユーザー |
![]() |
提出日時 | 2021-08-02 14:47:22 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 385 bytes |
コンパイル時間 | 952 ms |
コンパイル使用メモリ | 61,088 KB |
最終ジャッジ日時 | 2025-01-23 13:42:51 |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp:2:10: fatal error: testlib.h: No such file or directory 2 | #include "testlib.h" | ^~~~~~~~~~~ compilation terminated.
ソースコード
#include <bits/stdc++.h> #include "testlib.h" #include <sys/wait.h> using namespace std; int main(int argc, char *argv[]) { pid_t pid; int status; if (pid = fork() == 0) { registerValidation(argc, argv); inf.readString("[1-9][0-9]"); inf.readEof(); exit(0); } wait(&status); if (WEXITSTATUS(status) == 0) cout << "Yes\n"; else cout << "No\n"; }