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