結果
問題 | No.343 手抜き工事のプロ |
ユーザー | piconic_X |
提出日時 | 2016-03-16 00:57:34 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 946 bytes |
コンパイル時間 | 49 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-10-01 07:05:04 |
合計ジャッジ時間 | 1,342 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,816 KB |
testcase_01 | AC | 11 ms
6,824 KB |
testcase_02 | AC | 11 ms
6,820 KB |
testcase_03 | AC | 12 ms
6,816 KB |
testcase_04 | AC | 11 ms
6,820 KB |
testcase_05 | AC | 12 ms
6,824 KB |
testcase_06 | AC | 11 ms
6,816 KB |
testcase_07 | AC | 11 ms
6,824 KB |
testcase_08 | AC | 11 ms
6,816 KB |
testcase_09 | AC | 10 ms
6,816 KB |
testcase_10 | AC | 10 ms
6,820 KB |
testcase_11 | AC | 10 ms
6,820 KB |
testcase_12 | AC | 11 ms
6,820 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 11 ms
6,820 KB |
testcase_16 | AC | 11 ms
6,820 KB |
testcase_17 | AC | 11 ms
6,816 KB |
testcase_18 | AC | 11 ms
6,816 KB |
testcase_19 | AC | 11 ms
6,820 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
ソースコード
# -*- coding: utf-8 -*- import sys import math args = sys.stdin.readlines() n = float(args[0]) hl = float(args[1]) / 2 def loop(i, prev_sum, n, cntr): if n == 1: return 0 elif i == 1: xii = float(args[i+1]) if math.fabs(float(xii)) > 2*hl-1: return -1 elif math.fabs(prev_sum) < hl and math.fabs(prev_sum - xii) < hl: return cntr else: return cntr+1 else: xi = float(args[i]) xii = float(args[i+1]) if math.fabs(xi - xii) > 2*hl-1: return -1 elif math.fabs(prev_sum - xi) < hl and math.fabs(prev_sum - xii) < hl: new_sum = float((n-i)*prev_sum + xi)/(n-i+1) return loop(i-1, new_sum, n, cntr) else: new_sum = float((n-i)*prev_sum + xi)/(n-i+1) return loop(i-1, new_sum, n, cntr+1) print loop( len(args)-2 , float(args[len(args)-1]), n, 0 )