結果

問題 No.2208 Linear Function
ユーザー lllllll88938494lllllll88938494
提出日時 2023-02-19 06:13:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 4,549 ms
コンパイル使用メモリ 82,908 KB
実行使用メモリ 76,252 KB
最終ジャッジ日時 2023-09-27 15:17:02
合計ジャッジ時間 1,274 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,232 KB
testcase_01 AC 86 ms
75,888 KB
testcase_02 AC 84 ms
76,104 KB
testcase_03 AC 84 ms
76,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
#ax+b
ans = 0
for i in range(t):
    l,r,a,b = map(int,input().split())
    if a>=0:
        t = a * r + b
    elif a < 0:
        x=min(l,r)
        t = a * x + b
    print(t)
    
0