結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,820 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