結果
問題 | No.2208 Linear Function |
ユーザー | 👑 AngrySadEight |
提出日時 | 2023-01-20 13:57:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 151 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 66,344 KB |
最終ジャッジ日時 | 2024-06-23 03:46:14 |
合計ジャッジ時間 | 807 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
T = int(input()) for _ in range(T): L, R, A, B = map(int,input().split()) if A < 0: print(R * A + B) else: print(L * A + B)