結果

問題 No.1285 ゴミ捨て
ユーザー shotoyooshotoyoo
提出日時 2020-11-13 23:42:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 77,540 KB
最終ジャッジ日時 2024-11-28 21:49:43
合計ジャッジ時間 2,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,688 KB
testcase_01 AC 35 ms
53,320 KB
testcase_02 AC 38 ms
52,348 KB
testcase_03 AC 34 ms
54,128 KB
testcase_04 AC 35 ms
52,008 KB
testcase_05 AC 35 ms
53,904 KB
testcase_06 AC 35 ms
53,108 KB
testcase_07 AC 76 ms
77,160 KB
testcase_08 AC 44 ms
62,236 KB
testcase_09 AC 58 ms
76,316 KB
testcase_10 AC 71 ms
77,000 KB
testcase_11 AC 71 ms
77,252 KB
testcase_12 AC 64 ms
76,496 KB
testcase_13 AC 61 ms
76,448 KB
testcase_14 AC 71 ms
77,028 KB
testcase_15 AC 68 ms
76,636 KB
testcase_16 AC 49 ms
68,660 KB
testcase_17 AC 48 ms
67,788 KB
testcase_18 AC 48 ms
67,108 KB
testcase_19 AC 56 ms
74,348 KB
testcase_20 AC 47 ms
66,584 KB
testcase_21 AC 50 ms
69,728 KB
testcase_22 AC 76 ms
77,540 KB
testcase_23 AC 76 ms
77,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")

n = int(input())
a = [int(input()) for _ in range(n)]
a.sort()
ans = 0
j = 0
for i in range(n):
    while j+1<n and a[j+1]<=a[i]+1:
        j += 1
    ans = max(ans, j-i+1)
print(ans)
0