結果

問題 No.2208 Linear Function
ユーザー srue1098srue1098
提出日時 2023-02-13 22:42:28
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 7,721 ms
コンパイル使用メモリ 171,100 KB
実行使用メモリ 186,020 KB
最終ジャッジ日時 2024-07-16 13:45:21
合計ジャッジ時間 8,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
28,416 KB
testcase_01 AC 56 ms
28,672 KB
testcase_02 AC 56 ms
28,800 KB
testcase_03 AC 57 ms
186,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

class Program
{
    static void Main()
    {
        int T = int.Parse(Console.ReadLine());
        
        string[][] cases = new string[T][];
        
        int[] L = new int[T];
        int[] R = new int[T];
        int[] A = new int[T];
        int[] B = new int[T];
        
        
        for(int i=0; i<T; i++)
        {
            cases[i] = Console.ReadLine().Split(' ');
            L[i] = int.Parse(cases[i][0]);
            R[i] = int.Parse(cases[i][1]);
            A[i] = int.Parse(cases[i][2]);
            B[i] = int.Parse(cases[i][3]);
        }
        
        int[] Max = new int[T];
        
        for(int i=0; i<T; i++)
        {
            if(A[i] < 0)
            {
                Max[i] = A[i] * L[i] + B[i];
            }
            
            else
            {
                Max[i] = A[i] * R[i] + B[i];
            }
            Console.WriteLine(Max[i]);
        }
        
        
    }
}
0