結果
| 問題 |
No.2537 多重含意
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 23:05:49 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 538 bytes |
| コンパイル時間 | 1,509 ms |
| コンパイル使用メモリ | 171,740 KB |
| 実行使用メモリ | 7,168 KB |
| 最終ジャッジ日時 | 2024-09-26 02:09:30 |
| 合計ジャッジ時間 | 3,393 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 14 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
int32_t main()
{
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int n,p;cin>>n>>p;int a[n];for(int i=0;i<n;++i) cin>>a[i];
int po[n+1]={1};for(int i=0;i<n;++i) {po[i+1]=(2*po[i])%p;} po[0]%=p;
set<int> h;int answ=0;
for(int i=0;i<n;++i)
{
int u=po[n];
if(i!=0) h.insert(a[i]);
int v=0;
if(h.count(a[0])) {v=0;}
else {v=po[n-h.size()-1];}
cout<<((u-v)%p+p)%p<<endl;
}
return 0;
}