結果

問題 No.1285 ゴミ捨て
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-05 08:01:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 78,556 KB
最終ジャッジ日時 2024-07-23 02:31:56
合計ジャッジ時間 3,003 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,816 KB
testcase_01 AC 37 ms
52,984 KB
testcase_02 AC 37 ms
52,752 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 36 ms
53,108 KB
testcase_05 AC 38 ms
52,256 KB
testcase_06 AC 38 ms
53,140 KB
testcase_07 AC 111 ms
78,020 KB
testcase_08 AC 58 ms
67,444 KB
testcase_09 AC 82 ms
76,912 KB
testcase_10 AC 104 ms
77,660 KB
testcase_11 AC 101 ms
77,976 KB
testcase_12 AC 91 ms
77,176 KB
testcase_13 AC 91 ms
77,204 KB
testcase_14 AC 109 ms
77,784 KB
testcase_15 AC 97 ms
77,180 KB
testcase_16 AC 71 ms
76,536 KB
testcase_17 AC 71 ms
76,164 KB
testcase_18 AC 66 ms
74,384 KB
testcase_19 AC 82 ms
76,876 KB
testcase_20 AC 65 ms
73,632 KB
testcase_21 AC 73 ms
76,496 KB
testcase_22 AC 113 ms
78,096 KB
testcase_23 AC 115 ms
78,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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