結果

問題 No.1285 ゴミ捨て
ユーザー kept1994kept1994
提出日時 2021-09-29 17:05:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,460 KB
最終ジャッジ日時 2024-07-16 12:42:29
合計ジャッジ時間 3,839 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 117 ms
77,312 KB
testcase_08 AC 63 ms
66,944 KB
testcase_09 AC 86 ms
76,300 KB
testcase_10 AC 108 ms
77,460 KB
testcase_11 AC 106 ms
77,312 KB
testcase_12 AC 94 ms
76,544 KB
testcase_13 AC 92 ms
77,056 KB
testcase_14 AC 110 ms
77,312 KB
testcase_15 AC 100 ms
77,184 KB
testcase_16 AC 71 ms
74,496 KB
testcase_17 AC 75 ms
76,220 KB
testcase_18 AC 71 ms
74,148 KB
testcase_19 AC 84 ms
76,416 KB
testcase_20 AC 72 ms
73,728 KB
testcase_21 AC 77 ms
76,160 KB
testcase_22 AC 119 ms
77,408 KB
testcase_23 AC 124 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    A = [int(input()) for _ in range(N)]
    A.sort()
    
    for i in range(N - 1):
        if A[i + 1] - A[i] == 1:
            print(2)
            return
    print(1)
    return


if __name__ == '__main__':
    main()
0