結果

問題 No.1285 ゴミ捨て
ユーザー hiragnhiragn
提出日時 2022-11-23 10:51:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 781 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,128 KB
最終ジャッジ日時 2024-09-24 16:31:12
合計ジャッジ時間 19,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 517 ms
43,552 KB
testcase_01 AC 529 ms
43,548 KB
testcase_02 AC 521 ms
43,548 KB
testcase_03 AC 527 ms
43,940 KB
testcase_04 AC 522 ms
43,808 KB
testcase_05 AC 529 ms
43,908 KB
testcase_06 AC 530 ms
43,672 KB
testcase_07 AC 777 ms
45,872 KB
testcase_08 AC 540 ms
43,680 KB
testcase_09 AC 632 ms
43,680 KB
testcase_10 AC 737 ms
44,968 KB
testcase_11 AC 727 ms
44,960 KB
testcase_12 AC 668 ms
43,548 KB
testcase_13 AC 666 ms
43,552 KB
testcase_14 AC 753 ms
45,612 KB
testcase_15 AC 688 ms
44,456 KB
testcase_16 AC 576 ms
43,548 KB
testcase_17 AC 555 ms
43,540 KB
testcase_18 AC 557 ms
43,784 KB
testcase_19 AC 620 ms
43,676 KB
testcase_20 AC 567 ms
43,804 KB
testcase_21 AC 580 ms
43,804 KB
testcase_22 AC 771 ms
46,128 KB
testcase_23 AC 781 ms
46,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def main():
    n = int(input())
    a = [int(input()) for _ in range(n)]

    if len(a) == 1:
        exit(print(1))

    ans = 1 if min(np.diff(sorted(a))) > 1 else 2
    print(ans)


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