結果
問題 |
No.8016 unordered_mapなるたけ落とすマン
|
ユーザー |
|
提出日時 | 2016-05-22 00:39:59 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 323 bytes |
コンパイル時間 | 1,177 ms |
コンパイル使用メモリ | 165,616 KB |
実行使用メモリ | 14,892 KB |
最終ジャッジ日時 | 2024-10-07 05:37:25 |
合計ジャッジ時間 | 5,352 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 TLE * 1 -- * 35 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:11:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%lld", &a); | ~~~~~^~~~~~~~~~~~ main.cpp:16:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | scanf("%lld", &b); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; unordered_map<long long, int> mp; for (int i = 0; i < n; i++) { long long a; scanf("%lld", &a); mp[a ^ 1]++; } for (int i = 0; i < m; i++) { long long b; scanf("%lld", &b); printf("%d ", mp[b ^ 1]); } cout << endl; }