結果

問題 No.1285 ゴミ捨て
ユーザー hiragnhiragn
提出日時 2022-11-23 10:49:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 200 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,720 KB
最終ジャッジ日時 2024-09-24 16:29:41
合計ジャッジ時間 17,995 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 477 ms
44,432 KB
testcase_01 AC 464 ms
44,300 KB
testcase_02 AC 476 ms
44,168 KB
testcase_03 AC 482 ms
44,556 KB
testcase_04 RE -
testcase_05 AC 479 ms
44,424 KB
testcase_06 AC 464 ms
44,172 KB
testcase_07 AC 695 ms
46,340 KB
testcase_08 AC 472 ms
44,048 KB
testcase_09 AC 564 ms
44,296 KB
testcase_10 AC 658 ms
46,088 KB
testcase_11 AC 643 ms
44,804 KB
testcase_12 AC 599 ms
44,668 KB
testcase_13 AC 608 ms
45,068 KB
testcase_14 AC 695 ms
46,048 KB
testcase_15 AC 616 ms
45,196 KB
testcase_16 AC 516 ms
44,428 KB
testcase_17 AC 521 ms
44,040 KB
testcase_18 AC 505 ms
44,040 KB
testcase_19 AC 556 ms
44,300 KB
testcase_20 AC 512 ms
44,044 KB
testcase_21 AC 538 ms
44,308 KB
testcase_22 AC 720 ms
46,720 KB
testcase_23 AC 712 ms
46,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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

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


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