結果
| 問題 | No.8005 天使のハッシュ関数 |
| コンテスト | |
| ユーザー |
ldsyb
|
| 提出日時 | 2016-03-21 12:01:37 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 181 bytes |
| コンパイル時間 | 1,142 ms |
| コンパイル使用メモリ | 54,828 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-01 12:18:45 |
| 合計ジャッジ時間 | 1,674 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 14 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:10: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
10 | system(md5sum.c_str());
| ~~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;
int main(){
string s,md5sum = "md5sum ";
cin >> s;
md5sum += s;
system(md5sum.c_str());
}
ldsyb