結果

問題 No.40 多項式の割り算
ユーザー bluemeganebluemegane
提出日時 2021-04-23 13:01:28
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,000 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 108,320 KB
実行使用メモリ 26,852 KB
最終ジャッジ日時 2024-07-04 07:00:51
合計ジャッジ時間 3,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 25 ms
23,680 KB
testcase_02 AC 24 ms
26,052 KB
testcase_03 AC 24 ms
24,008 KB
testcase_04 AC 31 ms
24,548 KB
testcase_05 AC 31 ms
24,804 KB
testcase_06 AC 33 ms
26,648 KB
testcase_07 AC 33 ms
26,660 KB
testcase_08 AC 29 ms
26,592 KB
testcase_09 AC 32 ms
24,752 KB
testcase_10 AC 32 ms
26,520 KB
testcase_11 AC 30 ms
24,560 KB
testcase_12 AC 29 ms
24,424 KB
testcase_13 AC 30 ms
24,816 KB
testcase_14 AC 31 ms
26,460 KB
testcase_15 AC 30 ms
24,420 KB
testcase_16 AC 30 ms
24,876 KB
testcase_17 AC 32 ms
24,424 KB
testcase_18 AC 30 ms
26,852 KB
testcase_19 AC 31 ms
26,664 KB
testcase_20 AC 30 ms
26,844 KB
testcase_21 AC 29 ms
24,296 KB
testcase_22 AC 28 ms
24,288 KB
testcase_23 AC 29 ms
26,468 KB
testcase_24 AC 29 ms
24,500 KB
testcase_25 AC 25 ms
25,924 KB
testcase_26 AC 23 ms
23,980 KB
testcase_27 AC 24 ms
24,040 KB
testcase_28 RE -
testcase_29 AC 26 ms
25,796 KB
testcase_30 AC 24 ms
23,880 KB
testcase_31 AC 25 ms
24,040 KB
testcase_32 RE -
testcase_33 AC 25 ms
23,724 KB
testcase_34 AC 23 ms
24,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, a);
    }
    static void getAns(int n, int[] a)
    {
        n++;
        Array.Reverse(a);
        var t = new int[4];
        for (int i = 0; i < 4; i++) t[i] = a[i];
        var b = new int[] { 1, 0, -1, 0 };
        var imax = n - 3;
        var s = a[0];
        var p = 0;
        for (int i = 0; i < imax; i++)
        {
            for (int j = 1; j < 4; j++)
                t[j - 1] = t[j] - b[j] * s;
            if (4 + p < n) t[3] = a[4 + p];
            s = t[0];
            p++;
        }
        if (t[0] == 0)
        {
            if (t[1] == 0) Console.WriteLine("0\n{0}", t[2]);
            else Console.WriteLine("1\n{0} {1}", t[2], t[1]);
        }
        else Console.WriteLine("2\n{0} {1} {2}", t[2], t[1], t[0]);
    }
}
0