結果
問題 | No.3005 天使のハッシュ関数 |
ユーザー | kroton |
提出日時 | 2014-12-25 18:43:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 6 ms / 5,000 ms |
コード長 | 310 bytes |
コンパイル時間 | 1,311 ms |
コンパイル使用メモリ | 159,964 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-12 22:59:53 |
合計ジャッジ時間 | 2,090 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
外部呼び出し有り |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
5,248 KB |
testcase_01 | AC | 5 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 5 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘std::string md5(std::string)’: main.cpp:9:15: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | fscanf(fp, "%s", buf); | ~~~~~~^~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; string md5(string s){ string cmd = "echo -n " + s + " | md5sum"; FILE *fp = popen(cmd.c_str(), "r"); char buf[50]; fscanf(fp, "%s", buf); fclose(fp); return string(buf); } int main(){ string S; cin >> S; cout << md5(md5(S)) << endl; return 0; }