結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 281 ms
22,184 KB
testcase_08 AC 34 ms
11,136 KB
testcase_09 AC 130 ms
14,228 KB
testcase_10 AC 246 ms
17,860 KB
testcase_11 AC 231 ms
17,724 KB
testcase_12 AC 173 ms
16,800 KB
testcase_13 AC 175 ms
16,792 KB
testcase_14 AC 263 ms
22,000 KB
testcase_15 AC 198 ms
17,136 KB
testcase_16 AC 72 ms
12,416 KB
testcase_17 AC 71 ms
12,400 KB
testcase_18 AC 67 ms
12,288 KB
testcase_19 AC 121 ms
14,080 KB
testcase_20 AC 66 ms
12,288 KB
testcase_21 AC 85 ms
13,632 KB
testcase_22 AC 286 ms
22,572 KB
testcase_23 AC 300 ms
22,356 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