結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,132 KB
testcase_01 AC 38 ms
55,136 KB
testcase_02 AC 38 ms
53,752 KB
testcase_03 AC 36 ms
53,628 KB
testcase_04 AC 39 ms
54,856 KB
testcase_05 AC 37 ms
53,892 KB
testcase_06 AC 39 ms
55,372 KB
testcase_07 AC 114 ms
91,748 KB
testcase_08 AC 58 ms
71,200 KB
testcase_09 AC 84 ms
82,052 KB
testcase_10 AC 109 ms
89,892 KB
testcase_11 AC 99 ms
88,616 KB
testcase_12 AC 94 ms
84,792 KB
testcase_13 AC 92 ms
85,548 KB
testcase_14 AC 107 ms
90,280 KB
testcase_15 AC 98 ms
87,160 KB
testcase_16 AC 73 ms
78,164 KB
testcase_17 AC 72 ms
78,276 KB
testcase_18 AC 68 ms
78,060 KB
testcase_19 AC 83 ms
81,344 KB
testcase_20 AC 69 ms
77,752 KB
testcase_21 AC 73 ms
79,248 KB
testcase_22 AC 124 ms
88,576 KB
testcase_23 AC 121 ms
89,668 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