結果
| 問題 | No.8013 Trigger EPIPE |
| ユーザー |
Lepton_s
|
| 提出日時 | 2015-09-11 21:26:21 |
| 言語 | C90(gcc12) (gcc 12.4.0) |
| 結果 |
AC
|
| 実行時間 | 34 ms / 1,500 ms |
| コード長 | 52 bytes |
| 記録 | |
| コンパイル時間 | 149 ms |
| コンパイル使用メモリ | 27,204 KB |
| 最終ジャッジ日時 | 2026-02-23 19:27:27 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:2:23: warning: incompatible implicit declaration of built-in function ‘exit’ [-Wbuiltin-declaration-mismatch]
2 | int main(){ close(1); exit(0); }
| ^~~~
main.c:2:1: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
1 | #include <unistd.h>
+++ |+#include <stdlib.h>
2 | int main(){ close(1); exit(0); }
ソースコード
#include <unistd.h>
int main(){ close(1); exit(0); }
Lepton_s