結果

問題 No.3010 Print inside /bin
ユーザー HAHAHAHAHAHA
提出日時 2015-07-01 12:16:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 1,500 ms
コード長 56 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 21,376 KB
実行使用メモリ 6,812 KB
最終ジャッジ日時 2024-07-07 21:39:31
合計ジャッジ時間 522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:3:10: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    3 |    system( "ls /bin" );
      |    ~~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <cstdlib>
int main(){
   system( "ls /bin" );
}
0