結果

問題 No.1268 Fruit Rush 2
ユーザー KudeKude
提出日時 2020-10-23 23:31:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 171,028 KB
最終ジャッジ日時 2024-07-21 13:28:19
合計ジャッジ時間 5,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 35 ms
51,712 KB
testcase_12 AC 35 ms
51,712 KB
testcase_13 AC 35 ms
51,584 KB
testcase_14 AC 35 ms
51,456 KB
testcase_15 AC 34 ms
52,224 KB
testcase_16 AC 138 ms
125,824 KB
testcase_17 AC 123 ms
123,648 KB
testcase_18 AC 126 ms
124,160 KB
testcase_19 AC 123 ms
124,032 KB
testcase_20 AC 123 ms
124,104 KB
testcase_21 AC 125 ms
123,648 KB
testcase_22 AC 137 ms
118,244 KB
testcase_23 AC 138 ms
125,440 KB
testcase_24 AC 122 ms
124,160 KB
testcase_25 AC 134 ms
127,104 KB
testcase_26 AC 215 ms
165,716 KB
testcase_27 AC 213 ms
165,596 KB
testcase_28 AC 215 ms
165,712 KB
testcase_29 AC 211 ms
165,588 KB
testcase_30 AC 212 ms
165,600 KB
testcase_31 AC 146 ms
112,256 KB
testcase_32 AC 146 ms
114,304 KB
testcase_33 AC 136 ms
136,780 KB
testcase_34 AC 135 ms
128,756 KB
testcase_35 AC 151 ms
171,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = sorted(map(int, input().split()))
d = {}
ans = 0
for ai in a:
    d[ai] = d.get(ai, 0) + 1
    d[ai+1] = d.get(ai-1, 0)
    ans += 1 + d[ai+1]
print(ans)
0