結果

問題 No.1285 ゴミ捨て
ユーザー mesame3993mesame3993
提出日時 2021-11-18 01:34:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,644 KB
最終ジャッジ日時 2024-06-06 18:35:53
合計ジャッジ時間 3,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 33 ms
51,712 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 114 ms
77,312 KB
testcase_08 AC 63 ms
68,608 KB
testcase_09 AC 86 ms
76,800 KB
testcase_10 AC 111 ms
77,184 KB
testcase_11 AC 105 ms
77,184 KB
testcase_12 AC 94 ms
76,800 KB
testcase_13 AC 94 ms
77,020 KB
testcase_14 AC 108 ms
77,244 KB
testcase_15 AC 97 ms
76,928 KB
testcase_16 AC 77 ms
76,288 KB
testcase_17 AC 76 ms
76,032 KB
testcase_18 AC 72 ms
76,388 KB
testcase_19 AC 83 ms
76,480 KB
testcase_20 AC 71 ms
74,240 KB
testcase_21 AC 78 ms
76,416 KB
testcase_22 AC 117 ms
77,644 KB
testcase_23 AC 118 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt0, cnt1 = 0, 0
A = [int(input()) for _ in range(n)]
A.sort()
for a in A:
  if a % 2 == 0:
    cnt1 += 1
  else:
    cnt0 += 1
for i in range(n-1):
  if A[i+1] - A[i] <= 1:
    if cnt0 and cnt1:
      print(2)
      break
else:
  print(1)
0