結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,264 KB
testcase_01 AC 38 ms
52,020 KB
testcase_02 AC 39 ms
53,512 KB
testcase_03 AC 39 ms
53,212 KB
testcase_04 AC 38 ms
53,052 KB
testcase_05 AC 39 ms
53,060 KB
testcase_06 AC 39 ms
52,524 KB
testcase_07 AC 113 ms
77,328 KB
testcase_08 AC 62 ms
67,972 KB
testcase_09 AC 86 ms
76,608 KB
testcase_10 AC 108 ms
77,268 KB
testcase_11 AC 104 ms
77,292 KB
testcase_12 AC 92 ms
76,744 KB
testcase_13 AC 93 ms
76,708 KB
testcase_14 AC 112 ms
77,264 KB
testcase_15 AC 98 ms
76,872 KB
testcase_16 AC 76 ms
76,372 KB
testcase_17 AC 74 ms
76,536 KB
testcase_18 AC 72 ms
74,412 KB
testcase_19 AC 85 ms
76,740 KB
testcase_20 AC 69 ms
74,052 KB
testcase_21 AC 76 ms
76,488 KB
testcase_22 AC 116 ms
77,636 KB
testcase_23 AC 116 ms
77,860 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