結果
| 問題 | No.1285 ゴミ捨て |
| コンテスト | |
| ユーザー |
akanaya
|
| 提出日時 | 2020-11-23 10:37:29 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 247 ms / 2,000 ms |
| コード長 | 351 bytes |
| 記録 | |
| コンパイル時間 | 711 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 26,192 KB |
| 最終ジャッジ日時 | 2026-05-22 20:24:41 |
| 合計ジャッジ時間 | 5,428 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
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)
akanaya