結果

問題 No.1285 ゴミ捨て
ユーザー akanayaakanaya
提出日時 2020-11-23 10:37:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,480 KB
最終ジャッジ日時 2024-11-28 21:57:09
合計ジャッジ時間 4,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 322 ms
22,208 KB
testcase_08 AC 41 ms
11,264 KB
testcase_09 AC 150 ms
14,228 KB
testcase_10 AC 279 ms
17,864 KB
testcase_11 AC 260 ms
17,716 KB
testcase_12 AC 190 ms
16,792 KB
testcase_13 AC 189 ms
16,916 KB
testcase_14 AC 301 ms
22,124 KB
testcase_15 AC 220 ms
17,140 KB
testcase_16 AC 80 ms
12,416 KB
testcase_17 AC 81 ms
12,276 KB
testcase_18 AC 80 ms
12,288 KB
testcase_19 AC 139 ms
14,076 KB
testcase_20 AC 73 ms
12,412 KB
testcase_21 AC 97 ms
13,632 KB
testcase_22 AC 326 ms
22,352 KB
testcase_23 AC 335 ms
22,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter, defaultdict, deque

n = int(input())
ary = [None] * n
for i in range(n):
    ary[i] = (int(input()))

c = Counter(ary)

ks = sorted(c.keys())

result = 1
for i in range(len(ks) - 1):
    if ks[i + 1] - ks[i] == 1:
        if c[ks[i + 1]] + c[ks[i]]> result:
            result = c[ks[i + 1]] + c[ks[i]]

print(result)
0