結果

問題 No.1285 ゴミ捨て
ユーザー NoneNone
提出日時 2021-05-05 03:00:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 88,244 KB
最終ジャッジ日時 2024-11-28 22:02:18
合計ジャッジ時間 2,875 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,256 KB
testcase_01 AC 36 ms
54,172 KB
testcase_02 AC 38 ms
54,268 KB
testcase_03 AC 38 ms
54,788 KB
testcase_04 AC 38 ms
54,424 KB
testcase_05 AC 38 ms
53,812 KB
testcase_06 AC 37 ms
55,028 KB
testcase_07 AC 123 ms
86,928 KB
testcase_08 AC 59 ms
71,984 KB
testcase_09 AC 94 ms
84,308 KB
testcase_10 AC 117 ms
88,156 KB
testcase_11 AC 114 ms
87,164 KB
testcase_12 AC 98 ms
83,372 KB
testcase_13 AC 98 ms
83,604 KB
testcase_14 AC 123 ms
88,244 KB
testcase_15 AC 105 ms
85,428 KB
testcase_16 AC 73 ms
78,560 KB
testcase_17 AC 73 ms
78,812 KB
testcase_18 AC 73 ms
78,344 KB
testcase_19 AC 87 ms
83,216 KB
testcase_20 AC 71 ms
78,064 KB
testcase_21 AC 75 ms
80,216 KB
testcase_22 AC 124 ms
87,600 KB
testcase_23 AC 128 ms
87,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N=int(input())
A=[]
for _ in range(N):
    A.append(int(input()))
A.sort()
D=[]
for i in range(1,N):
    D.append(A[i]-A[i-1])
C=Counter(D)
if C[1]==0:
    print(1)
elif C[1]>=1:
    print(2)
0