結果

問題 No.3010 Print inside /bin
ユーザー Kmcode1Kmcode1
提出日時 2015-05-04 00:07:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 918 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 96,496 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-19 05:45:40
合計ジャッジ時間 1,429 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cctype>
#include<cstdlib>
#include<algorithm>
#include<bitset>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<map>
#include<set>
#include<stack>
#include<cmath>
#include<sstream>
#include<fstream>
#include<iomanip>
#include<ctime>
#include<complex>
#include<functional>
#include<climits>
#include<cassert>
#include<iterator>
#include<valarray>
//#include<bits/stdc++.h>
using namespace std;
//#include <iostream>
//#include <cstdlib>
#include <dirent.h>

int main()
{
	const char* path = "/bin";
	DIR *dp;       // ディレクトリへのポインタ
	dirent* entry; // readdir() で返されるエントリーポイント

	dp = opendir(path);
	if (dp == NULL) exit(1);
	do {
		entry = readdir(dp);
		if (entry != NULL)
			std::cout << path << entry->d_name << std::endl;
	} while (entry != NULL);
	return 0;
}
0