結果
問題 |
No.2208 Linear Function
|
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 3 |
ソースコード
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)