結果

問題 No.3010 Print inside /bin
ユーザー ldsybldsyb
提出日時 2016-03-16 21:38:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 1,500 ms
コード長 50 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 21,632 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-04-08 16:37:28
合計ジャッジ時間 952 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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