結果
| 問題 | No.8010 Print inside /bin |
| コンテスト | |
| ユーザー |
kpinkcat
|
| 提出日時 | 2023-08-24 00:38:10 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 1,500 ms |
| コード長 | 243 bytes |
| コンパイル時間 | 933 ms |
| コンパイル使用メモリ | 100,292 KB |
| 最終ジャッジ日時 | 2025-02-16 12:51:30 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
| 外部呼び出し有り |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:11: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
14 | system("ls /bin");
| ~~~~~~^~~~~~~~~~~
ソースコード
#include<iostream>
#include<iomanip>
#include<string>
#include<algorithm>
#include<vector>
#include<set>
#include<list>
#include<queue>
#include<math.h>
#include<bitset>
using namespace std;
int main(){
system("ls /bin");
return 0;
}
kpinkcat