結果

問題 No.1268 Fruit Rush 2
ユーザー 👑 rin204rin204
提出日時 2022-11-11 16:24:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 170,844 KB
最終ジャッジ日時 2024-09-13 11:51:28
合計ジャッジ時間 6,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,816 KB
testcase_01 AC 37 ms
52,928 KB
testcase_02 AC 38 ms
53,176 KB
testcase_03 AC 38 ms
52,420 KB
testcase_04 AC 38 ms
52,772 KB
testcase_05 AC 38 ms
52,460 KB
testcase_06 AC 38 ms
52,696 KB
testcase_07 AC 38 ms
52,816 KB
testcase_08 AC 38 ms
52,768 KB
testcase_09 AC 39 ms
53,076 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 37 ms
53,216 KB
testcase_12 AC 39 ms
52,644 KB
testcase_13 AC 39 ms
51,960 KB
testcase_14 AC 38 ms
52,440 KB
testcase_15 AC 39 ms
53,132 KB
testcase_16 AC 153 ms
114,756 KB
testcase_17 AC 135 ms
114,752 KB
testcase_18 AC 136 ms
115,496 KB
testcase_19 AC 135 ms
115,132 KB
testcase_20 AC 136 ms
117,808 KB
testcase_21 AC 136 ms
113,012 KB
testcase_22 AC 144 ms
110,564 KB
testcase_23 AC 144 ms
114,672 KB
testcase_24 AC 135 ms
117,756 KB
testcase_25 AC 135 ms
112,976 KB
testcase_26 AC 230 ms
166,328 KB
testcase_27 AC 223 ms
165,608 KB
testcase_28 AC 225 ms
165,544 KB
testcase_29 AC 224 ms
165,572 KB
testcase_30 AC 225 ms
165,480 KB
testcase_31 AC 159 ms
110,128 KB
testcase_32 AC 158 ms
110,828 KB
testcase_33 AC 141 ms
136,728 KB
testcase_34 AC 146 ms
137,732 KB
testcase_35 AC 165 ms
170,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A.sort()
dp = {}
for a in A:
    dp[a] = dp.get(a, 0) + 1
    dp[a + 1] = dp.get(a + 1, 0) + dp.get(a - 1, 0)
print(sum(dp.values()))
0