結果

問題 No.1285 ゴミ捨て
ユーザー rlangevinrlangevin
提出日時 2024-08-06 12:06:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 93,340 KB
最終ジャッジ日時 2024-08-06 12:06:19
合計ジャッジ時間 5,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 58 ms
53,760 KB
testcase_06 AC 42 ms
53,924 KB
testcase_07 AC 143 ms
93,340 KB
testcase_08 AC 68 ms
71,680 KB
testcase_09 AC 97 ms
81,940 KB
testcase_10 AC 130 ms
89,960 KB
testcase_11 AC 117 ms
88,448 KB
testcase_12 AC 103 ms
83,452 KB
testcase_13 AC 103 ms
82,144 KB
testcase_14 AC 129 ms
90,112 KB
testcase_15 AC 135 ms
87,160 KB
testcase_16 AC 79 ms
78,232 KB
testcase_17 AC 80 ms
78,176 KB
testcase_18 AC 81 ms
77,872 KB
testcase_19 AC 94 ms
81,240 KB
testcase_20 AC 79 ms
77,824 KB
testcase_21 AC 84 ms
79,176 KB
testcase_22 AC 132 ms
87,072 KB
testcase_23 AC 134 ms
86,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
A = [0] * N
for i in range(N):
    A[i] = int(input())

C = Counter(A)
ans = 0
for a in A:
    ans = max(ans, C[a] + max(C[a+1], C[a-1]))
print(ans)
0