結果

問題 No.1285 ゴミ捨て
ユーザー marroncastlemarroncastle
提出日時 2020-11-13 21:55:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 77,292 KB
最終ジャッジ日時 2024-05-06 14:31:33
合計ジャッジ時間 3,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,964 KB
testcase_01 AC 37 ms
52,868 KB
testcase_02 AC 40 ms
53,444 KB
testcase_03 AC 38 ms
53,140 KB
testcase_04 AC 39 ms
52,764 KB
testcase_05 AC 38 ms
53,616 KB
testcase_06 AC 38 ms
52,156 KB
testcase_07 AC 114 ms
77,236 KB
testcase_08 AC 62 ms
67,428 KB
testcase_09 AC 84 ms
76,612 KB
testcase_10 AC 108 ms
77,292 KB
testcase_11 AC 103 ms
77,120 KB
testcase_12 AC 91 ms
77,124 KB
testcase_13 AC 95 ms
76,696 KB
testcase_14 AC 110 ms
77,200 KB
testcase_15 AC 96 ms
77,180 KB
testcase_16 AC 74 ms
76,324 KB
testcase_17 AC 74 ms
76,040 KB
testcase_18 AC 68 ms
74,212 KB
testcase_19 AC 84 ms
76,408 KB
testcase_20 AC 67 ms
74,160 KB
testcase_21 AC 76 ms
76,456 KB
testcase_22 AC 116 ms
77,244 KB
testcase_23 AC 117 ms
77,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(input()) for _ in range(N)]
A.sort()
ans = 1
for i in range(N-1):
  if A[i]+1==A[i+1]:
    ans = 2
    break
print(ans)
0