結果

問題 No.2208 Linear Function
ユーザー lllllll88938494lllllll88938494
提出日時 2023-02-19 06:13:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 2,888 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2024-07-20 09:22:34
合計ジャッジ時間 1,306 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 71 ms
65,536 KB
testcase_02 AC 72 ms
65,408 KB
testcase_03 AC 71 ms
65,280 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