結果

問題 No.1285 ゴミ捨て
ユーザー masayamatumasayamatu
提出日時 2020-11-23 22:21:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 233 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 92,248 KB
最終ジャッジ日時 2024-07-23 18:00:43
合計ジャッジ時間 5,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
86,952 KB
testcase_01 AC 123 ms
79,908 KB
testcase_02 AC 121 ms
79,904 KB
testcase_03 AC 118 ms
80,164 KB
testcase_04 AC 120 ms
79,896 KB
testcase_05 AC 116 ms
79,876 KB
testcase_06 AC 120 ms
80,440 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
import math

n = int(input())

A = []

count = 1

for i in range(n):
    A.append(int(input()))

for i in range(n):
    for j in range(i+1,n):
        if abs(A[i] - A[j]) < 2:
            count += 1
print(count)
0