結果

問題 No.3010 Print inside /bin
ユーザー Kmcode1Kmcode1
提出日時 2015-05-04 01:50:26
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,035 bytes
コンパイル時間 759 ms
コンパイル使用メモリ 101,352 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-07-05 18:43:27
合計ジャッジ時間 1,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
In file included from /usr/include/c++/11/ios:40,
                 from /usr/include/c++/11/ostream:38,
                 from /usr/include/c++/11/iostream:39,
                 from main.cpp:1:
In static member function ‘static std::size_t std::char_traits<char>::length(const char_type*)’,
    inlined from ‘std::basic_ostream<char, _Traits>& std::operator<<(std::basic_ostream<char, _Traits>&, const char*) [with _Traits = std::char_traits<char>]’ at /usr/include/c++/11/ostream:617:44,
    inlined from ‘int main()’ at main.cpp:45:23:
/usr/include/c++/11/bits/char_traits.h:399:32: warning: ‘long unsigned int __builtin_strlen(const char*)’ reading 1 or more bytes from a region of size 0 [-Wstringop-overread]
  399 |         return __builtin_strlen(__s);
      |                ~~~~~~~~~~~~~~~~^~~~~

ソースコード

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>
vector<string> v;
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)exit(0);
		stringstream aa;
		aa << (entry->d_name);
		if (aa.str()[0] == '.'){
			continue;
		}
		//vv.push_back(aa.str());
		cout << aa.str() << endl;
	} while (entry != NULL);
	return 0;
}
0