結果
問題 | No.3010 Print inside /bin |
ユーザー | GN_ka02 |
提出日時 | 2015-05-05 15:57:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 5 ms / 1,500 ms |
コード長 | 103 bytes |
コンパイル時間 | 1,036 ms |
コンパイル使用メモリ | 156,252 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-07-05 19:08:55 |
合計ジャッジ時間 | 1,459 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
外部呼び出し有り |
(要ログイン)
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:4:11: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 4 | system("ls /bin | sort"); | ~~~~~~^~~~~~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; int main() { system("ls /bin | sort"); return 0; }