結果

問題 No.1285 ゴミ捨て
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2022-07-05 07:48:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 77,728 KB
最終ジャッジ日時 2024-05-09 00:31:41
合計ジャッジ時間 4,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,440 KB
testcase_01 AC 38 ms
53,320 KB
testcase_02 AC 38 ms
52,432 KB
testcase_03 AC 40 ms
52,712 KB
testcase_04 AC 38 ms
52,764 KB
testcase_05 AC 38 ms
52,764 KB
testcase_06 AC 40 ms
52,580 KB
testcase_07 AC 136 ms
77,568 KB
testcase_08 AC 66 ms
72,272 KB
testcase_09 AC 97 ms
76,572 KB
testcase_10 AC 125 ms
77,492 KB
testcase_11 AC 122 ms
77,560 KB
testcase_12 AC 106 ms
76,760 KB
testcase_13 AC 109 ms
76,736 KB
testcase_14 AC 131 ms
77,252 KB
testcase_15 AC 113 ms
76,948 KB
testcase_16 AC 82 ms
76,248 KB
testcase_17 AC 81 ms
76,444 KB
testcase_18 AC 81 ms
76,372 KB
testcase_19 AC 95 ms
76,464 KB
testcase_20 AC 80 ms
76,152 KB
testcase_21 AC 85 ms
76,464 KB
testcase_22 AC 139 ms
77,728 KB
testcase_23 AC 138 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

bufio_scanner = []


def main():
    n = int(fmt_scan())
    a = [int(fmt_scan()) for _ in range(n)]
    a.sort()

    ans = 1
    for i, _ in enumerate(a):
        if i == 0:
            continue
        if a[i] == a[i - 1] + 1:
            ans = 2
    print(ans)


def fmt_scan() -> str:
    sc = bufio_scanner
    if len(sc) == 0:
        for v in reversed(input().split()):
            sc.append(v)
    res = sc[-1]
    sc.pop()
    return res


main()
0