結果

問題 No.2537 多重含意
ユーザー ゼットゼット
提出日時 2023-11-11 08:16:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 94,164 KB
最終ジャッジ日時 2024-09-26 02:37:58
合計ジャッジ時間 2,610 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,632 KB
testcase_01 AC 37 ms
53,684 KB
testcase_02 AC 35 ms
52,756 KB
testcase_03 AC 37 ms
52,336 KB
testcase_04 AC 36 ms
52,028 KB
testcase_05 AC 36 ms
52,272 KB
testcase_06 AC 35 ms
53,152 KB
testcase_07 AC 35 ms
52,608 KB
testcase_08 AC 37 ms
53,800 KB
testcase_09 AC 39 ms
53,316 KB
testcase_10 AC 36 ms
52,840 KB
testcase_11 AC 36 ms
52,416 KB
testcase_12 AC 43 ms
53,004 KB
testcase_13 AC 37 ms
52,832 KB
testcase_14 AC 37 ms
52,572 KB
testcase_15 AC 36 ms
51,872 KB
testcase_16 AC 43 ms
60,456 KB
testcase_17 AC 62 ms
72,560 KB
testcase_18 AC 105 ms
93,752 KB
testcase_19 AC 110 ms
93,736 KB
testcase_20 AC 100 ms
93,828 KB
testcase_21 AC 101 ms
93,728 KB
testcase_22 AC 103 ms
93,960 KB
testcase_23 AC 102 ms
94,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,mod=map(int,input().split())
count=0
v=[0]*(N+1)
A=list(map(int,input().split()))
a=1
u=[1]*(N+1)
u[0]%=mod
for i in range(1,N+1):
  u[i]=u[i-1]*2
  u[i]%=mod
R=set()
ans=True
for i in range(N):
  ans=True
  x=A[i]
  if x in R:
    ans=False
  R.add(x)
  if ans==True:
    result=u[N]-u[N-len(R)]
    result%=mod
    print(result)
  else:
    print(u[N])
0