結果
問題 | No.586 ダブルブッキング |
ユーザー |
![]() |
提出日時 | 2018-06-24 12:04:32 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 353 bytes |
コンパイル時間 | 1,308 ms |
コンパイル使用メモリ | 164,324 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 22:24:49 |
合計ジャッジ時間 | 2,043 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = long long; #define rep(i,s,e) for(int (i) = (s);(i) <= (e);(i)++) int main(){ i64 p,q; cin >> p >> q; int N; cin >> N; set<int> st; i64 ans = 0; rep(i,0,N - 1){ int r; cin >> r; if(st.count(r)){ ans += p + q; } st.insert(r); } cout << ans << endl; }