結果
問題 |
No.2208 Linear Function
|
ユーザー |
|
提出日時 | 2023-02-16 08:22:43 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 109 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-18 11:00:35 |
合計ジャッジ時間 | 584 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 3 |
ソースコード
t = int(input()) for i in range(t): l,r,a,b = map(int,input().split()) print(a*(l,r)[a>=0]+b) print()