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