結果

問題 No.1285 ゴミ捨て
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2021-02-12 15:32:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,304 KB
最終ジャッジ日時 2024-07-19 08:40:20
合計ジャッジ時間 3,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 24 ms
10,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 235 ms
15,132 KB
testcase_08 WA -
testcase_09 AC 119 ms
12,672 KB
testcase_10 AC 212 ms
14,520 KB
testcase_11 AC 193 ms
14,272 KB
testcase_12 AC 152 ms
13,312 KB
testcase_13 AC 153 ms
13,056 KB
testcase_14 AC 236 ms
14,812 KB
testcase_15 AC 170 ms
13,672 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 104 ms
12,416 KB
testcase_20 WA -
testcase_21 AC 76 ms
11,520 KB
testcase_22 AC 249 ms
15,304 KB
testcase_23 AC 247 ms
15,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[int(input()) for _ in range(n)]
a.sort()
c=[0]*n
for i in range(1,n):
	if c[i]-c[i-1]<2:
		print(2)
		break
else:
	print(1)
0