結果

問題 No.1709 Indistinguishable by MEX
ユーザー syunsukesyunsuke
提出日時 2021-11-22 22:04:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 825 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 109,008 KB
最終ジャッジ日時 2024-06-24 11:19:54
合計ジャッジ時間 10,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,084 KB
testcase_01 AC 36 ms
52,432 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 36 ms
52,140 KB
testcase_04 AC 35 ms
52,228 KB
testcase_05 AC 37 ms
52,316 KB
testcase_06 AC 35 ms
52,300 KB
testcase_07 AC 40 ms
52,836 KB
testcase_08 AC 523 ms
105,484 KB
testcase_09 AC 418 ms
105,736 KB
testcase_10 AC 394 ms
103,432 KB
testcase_11 AC 318 ms
103,616 KB
testcase_12 AC 309 ms
102,192 KB
testcase_13 AC 395 ms
106,880 KB
testcase_14 AC 368 ms
104,740 KB
testcase_15 AC 390 ms
106,832 KB
testcase_16 AC 508 ms
109,008 KB
testcase_17 AC 460 ms
107,392 KB
testcase_18 AC 825 ms
108,168 KB
testcase_19 AC 657 ms
108,488 KB
testcase_20 AC 647 ms
108,228 KB
testcase_21 AC 521 ms
108,184 KB
testcase_22 AC 518 ms
108,124 KB
testcase_23 AC 163 ms
108,236 KB
testcase_24 AC 166 ms
108,240 KB
testcase_25 AC 164 ms
108,360 KB
testcase_26 AC 36 ms
53,640 KB
testcase_27 AC 95 ms
103,624 KB
testcase_28 AC 91 ms
101,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(int,input().split()))
l = []
for i in range(N):
    l.append([L[i],i])
    
l.sort()

left = l[0][1]
right = l[0][1]

ans = 1
mod = 998244353

for i in range(1,N):
    if l[i][1] < left:
        left = l[i][1]
    elif l[i][1] > right:
        right = l[i][1]
    else:
        ans *= (right - left - i + 1)
        ans %= mod
print(ans)
0