結果

問題 No.3013 Trigger EPIPE
ユーザー 184184
提出日時 2015-09-07 01:03:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 23 ms / 1,500 ms
コード長 184 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 24,964 KB
平均クエリ数 1.00
最終ジャッジ日時 2024-07-16 21:16:04
合計ジャッジ時間 780 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |     fscanf(fp,"%d",&a);
      |     ~~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
using namespace std;
//namaega184

int main(){
    FILE *fp=popen("a.bin","r");
    pclose(fp); 
    int a;
    fscanf(fp,"%d",&a);
    return 0;
}
0