結果

問題 No.343 手抜き工事のプロ
ユーザー nebukuro09nebukuro09
提出日時 2017-03-24 10:23:47
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 1,226 ms
コンパイル使用メモリ 76,584 KB
実行使用メモリ 86,172 KB
最終ジャッジ日時 2024-07-06 01:37:25
合計ジャッジ時間 7,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
81,052 KB
testcase_01 AC 119 ms
81,288 KB
testcase_02 AC 120 ms
81,044 KB
testcase_03 AC 125 ms
80,912 KB
testcase_04 AC 120 ms
81,036 KB
testcase_05 AC 118 ms
80,944 KB
testcase_06 AC 121 ms
80,804 KB
testcase_07 AC 120 ms
81,040 KB
testcase_08 AC 120 ms
81,040 KB
testcase_09 AC 121 ms
80,964 KB
testcase_10 AC 123 ms
81,044 KB
testcase_11 AC 119 ms
81,032 KB
testcase_12 AC 128 ms
81,700 KB
testcase_13 AC 216 ms
83,364 KB
testcase_14 AC 164 ms
82,436 KB
testcase_15 AC 127 ms
81,292 KB
testcase_16 AC 118 ms
80,928 KB
testcase_17 AC 118 ms
81,088 KB
testcase_18 AC 128 ms
81,336 KB
testcase_19 AC 121 ms
81,316 KB
testcase_20 AC 223 ms
83,748 KB
testcase_21 AC 257 ms
83,980 KB
testcase_22 AC 296 ms
84,756 KB
testcase_23 AC 304 ms
85,408 KB
testcase_24 AC 349 ms
86,140 KB
testcase_25 AC 332 ms
86,160 KB
testcase_26 AC 338 ms
86,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction

N = int(raw_input())
L = int(raw_input())
A = [0]
for i in xrange(N-1):
    A.append(int(raw_input()))

for i in xrange(N-1):
    l1, r1 = A[i], A[i]+L
    l2, r2 = A[i+1], A[i+1]+L
    if r2 <= l1 or r1 <= l2:
        print -1
        exit()

s = 0
ans = 0
for i in xrange(N-1):
    s += Fraction(A[N-i-1] + A[N-i-1] + L, 2)
    ave = Fraction(s, i + 1)
    if (A[N-i-1] < ave < A[N-i-1] + L and
        A[N-i-2] < ave < A[N-i-2] + L):
        pass
    else:
        ans += 1
print ans
0