結果

問題 No.2053 12345...
ユーザー rlangevinrlangevin
提出日時 2022-12-30 02:28:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 182 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 143,128 KB
最終ジャッジ日時 2024-05-03 20:32:58
合計ジャッジ時間 4,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,248 KB
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 44 ms
62,336 KB
testcase_03 AC 59 ms
79,616 KB
testcase_04 AC 97 ms
99,968 KB
testcase_05 AC 52 ms
73,088 KB
testcase_06 AC 94 ms
109,568 KB
testcase_07 AC 77 ms
97,536 KB
testcase_08 AC 78 ms
93,952 KB
testcase_09 AC 99 ms
99,968 KB
testcase_10 AC 126 ms
125,016 KB
testcase_11 AC 52 ms
71,936 KB
testcase_12 AC 52 ms
69,632 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 68 ms
86,528 KB
testcase_17 AC 60 ms
79,360 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 46 ms
61,696 KB
testcase_23 AC 54 ms
69,248 KB
testcase_24 AC 61 ms
81,920 KB
testcase_25 AC 121 ms
124,628 KB
testcase_26 AC 76 ms
97,280 KB
testcase_27 AC 63 ms
82,048 KB
testcase_28 AC 56 ms
77,056 KB
testcase_29 AC 100 ms
111,232 KB
testcase_30 AC 64 ms
78,720 KB
testcase_31 AC 91 ms
107,512 KB
testcase_32 AC 136 ms
130,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
A = list(map(int, input().split()))
D = defaultdict(int)

ans = 0
for a in A:
    ans += D[a - 1]
    D[a] += D[a - 1] + 1
    
print(ans)
0