結果

問題 No.8010 Print inside /bin
ユーザー Gakumamon14
提出日時 2017-02-21 16:32:24
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 4 ms / 1,500 ms
コード長 50 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-30 12:47:05
合計ジャッジ時間 882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:2:18: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    2 | int main(){system("ls /bin");}
      |            ~~~~~~^~~~~~~~~~~

ソースコード

diff #

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