結果

問題 No.3013 Trigger EPIPE
ユーザー Lepton_sLepton_s
提出日時 2015-09-11 21:26:21
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 25 ms / 1,500 ms
コード長 52 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 22,056 KB
実行使用メモリ 23,388 KB
平均クエリ数 1.00
最終ジャッジ日時 2023-09-23 21:27:59
合計ジャッジ時間 596 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:2:23: warning: implicit declaration of function ‘exit’ [-Wimplicit-function-declaration]
 int main(){ close(1); exit(0); }
                       ^~~~
main.c:2:23: warning: incompatible implicit declaration of built-in function ‘exit’
main.c:2:23: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
+#include <stdlib.h>
 int main(){ close(1); exit(0); }
                       ^~~~

ソースコード

diff #

#include <unistd.h>
int main(){ close(1); exit(0); }
0