結果

問題 No.2208 Linear Function
ユーザー shobonvipshobonvip
提出日時 2023-02-10 21:20:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2024-07-07 15:25:45
合計ジャッジ時間 882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 59 ms
64,640 KB
testcase_02 AC 59 ms
65,536 KB
testcase_03 AC 57 ms
65,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
	l,r,a,b = map(int,input().split())
	if a < 0:
		print(l*a + b)
	else:
		print(r*a + b)
0