結果

問題 No.1285 ゴミ捨て
ユーザー hir355hir355
提出日時 2020-11-13 21:28:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-05-06 14:26:32
合計ジャッジ時間 3,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 44 ms
53,632 KB
testcase_05 AC 47 ms
53,504 KB
testcase_06 AC 42 ms
53,504 KB
testcase_07 AC 128 ms
91,392 KB
testcase_08 AC 71 ms
70,272 KB
testcase_09 AC 99 ms
81,920 KB
testcase_10 AC 121 ms
89,728 KB
testcase_11 AC 119 ms
88,192 KB
testcase_12 AC 110 ms
84,352 KB
testcase_13 AC 108 ms
84,608 KB
testcase_14 AC 124 ms
90,112 KB
testcase_15 AC 110 ms
87,168 KB
testcase_16 AC 84 ms
78,080 KB
testcase_17 AC 85 ms
78,208 KB
testcase_18 AC 85 ms
77,568 KB
testcase_19 AC 95 ms
81,280 KB
testcase_20 AC 84 ms
77,312 KB
testcase_21 AC 85 ms
78,720 KB
testcase_22 AC 139 ms
89,856 KB
testcase_23 AC 136 ms
89,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n=int(input())
c=Counter([int(input()) for _ in range(n)])
ans=0
for k, v in c.items():
    ans=max(ans,v+c[k+1])
print(ans)
0