結果

問題 No.2970 三次関数の絶対値
ユーザー hato336hato336
提出日時 2024-11-29 21:26:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 470 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 180,784 KB
最終ジャッジ日時 2024-11-29 21:27:08
合計ジャッジ時間 50,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
92,660 KB
testcase_01 AC 436 ms
180,784 KB
testcase_02 AC 757 ms
97,288 KB
testcase_03 AC 1,090 ms
97,268 KB
testcase_04 AC 379 ms
97,096 KB
testcase_05 AC 459 ms
90,196 KB
testcase_06 AC 439 ms
90,480 KB
testcase_07 AC 384 ms
90,116 KB
testcase_08 AC 468 ms
89,996 KB
testcase_09 AC 754 ms
90,120 KB
testcase_10 AC 662 ms
90,196 KB
testcase_11 AC 1,694 ms
90,108 KB
testcase_12 AC 470 ms
90,660 KB
testcase_13 AC 452 ms
90,556 KB
testcase_14 AC 603 ms
90,136 KB
testcase_15 AC 409 ms
90,060 KB
testcase_16 AC 758 ms
90,540 KB
testcase_17 AC 451 ms
90,076 KB
testcase_18 AC 375 ms
90,464 KB
testcase_19 AC 384 ms
90,048 KB
testcase_20 AC 457 ms
90,332 KB
testcase_21 AC 397 ms
90,320 KB
testcase_22 AC 386 ms
90,128 KB
testcase_23 AC 459 ms
90,132 KB
testcase_24 AC 440 ms
90,072 KB
testcase_25 AC 425 ms
90,060 KB
testcase_26 TLE -
testcase_27 AC 426 ms
89,972 KB
testcase_28 AC 461 ms
90,124 KB
testcase_29 AC 417 ms
90,120 KB
testcase_30 AC 377 ms
90,124 KB
testcase_31 AC 1,061 ms
90,744 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 459 ms
90,200 KB
testcase_35 AC 378 ms
90,196 KB
testcase_36 AC 373 ms
90,196 KB
testcase_37 AC 1,075 ms
90,184 KB
testcase_38 TLE -
testcase_39 AC 774 ms
90,120 KB
testcase_40 TLE -
testcase_41 AC 1,762 ms
90,584 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 431 ms
89,984 KB
testcase_45 AC 650 ms
90,064 KB
testcase_46 AC 1,058 ms
90,064 KB
testcase_47 TLE -
testcase_48 AC 379 ms
90,308 KB
testcase_49 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
c = list(map(int,input().split()))
l,r = map(int,input().split())
ans = 10**18
for i in range(l*10**6,r*10**6+1):
    j = i / 10**6
    ans = min(ans,abs(sum(c[k] * j**k for k in range(4))))
print(ans)
0