結果

問題 No.1268 Fruit Rush 2
ユーザー trineutrontrineutron
提出日時 2020-10-23 23:02:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 1,081 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 45,256 KB
最終ジャッジ日時 2024-07-21 12:20:44
合計ジャッジ時間 9,821 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 325 ms
28,080 KB
testcase_17 AC 285 ms
26,860 KB
testcase_18 AC 299 ms
26,388 KB
testcase_19 AC 285 ms
26,276 KB
testcase_20 AC 291 ms
26,104 KB
testcase_21 AC 282 ms
26,672 KB
testcase_22 AC 332 ms
27,628 KB
testcase_23 AC 336 ms
28,044 KB
testcase_24 AC 297 ms
26,372 KB
testcase_25 AC 282 ms
25,948 KB
testcase_26 AC 427 ms
37,580 KB
testcase_27 AC 434 ms
37,824 KB
testcase_28 AC 430 ms
37,832 KB
testcase_29 AC 420 ms
37,708 KB
testcase_30 AC 430 ms
37,652 KB
testcase_31 AC 477 ms
40,480 KB
testcase_32 AC 459 ms
40,508 KB
testcase_33 AC 413 ms
45,256 KB
testcase_34 AC 359 ms
37,700 KB
testcase_35 AC 388 ms
41,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = sorted(list(map(int, input().split())))
ans = 0
dp = {}
for i in range(n):
    if a[i] not in dp:
        dp[a[i]] = 0
    if i >= 1 and a[i] == a[i - 1] + 1:
        dp[a[i]] += 1
    if i >= 2 and a[i] - 2 in dp:
        dp[a[i]] += dp[a[i] - 2]
    ans += dp[a[i]] + 1
print(ans)
0