結果

問題 No.1285 ゴミ捨て
ユーザー kento_kunkento_kun
提出日時 2020-11-23 21:44:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 80,264 KB
最終ジャッジ日時 2024-07-23 17:49:48
合計ジャッジ時間 3,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,756 KB
testcase_01 AC 36 ms
52,576 KB
testcase_02 AC 37 ms
54,092 KB
testcase_03 AC 36 ms
53,360 KB
testcase_04 AC 36 ms
52,552 KB
testcase_05 AC 36 ms
52,460 KB
testcase_06 AC 37 ms
52,704 KB
testcase_07 WA -
testcase_08 AC 60 ms
68,044 KB
testcase_09 AC 87 ms
78,672 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 72 ms
76,564 KB
testcase_17 AC 73 ms
76,308 KB
testcase_18 AC 71 ms
76,560 KB
testcase_19 WA -
testcase_20 AC 71 ms
76,276 KB
testcase_21 AC 77 ms
76,960 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Alist = []
for _ in range(N):
    a = int(input())
    Alist.append(a)

Alist.sort()

a = Alist[0]
cnt = 1
for i in range(1, N):
    if Alist[i] == a+1:
        cnt += 1
    a = Alist[i]
print(cnt)
0