結果

問題 No.40 多項式の割り算
ユーザー nanophoto12nanophoto12
提出日時 2014-11-15 22:51:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 760 bytes
コンパイル時間 1,319 ms
コンパイル使用メモリ 109,020 KB
実行使用メモリ 28,092 KB
最終ジャッジ日時 2024-12-31 20:30:37
合計ジャッジ時間 3,842 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,372 KB
testcase_01 AC 33 ms
25,372 KB
testcase_02 AC 32 ms
25,372 KB
testcase_03 AC 32 ms
24,992 KB
testcase_04 AC 40 ms
27,560 KB
testcase_05 AC 38 ms
25,780 KB
testcase_06 AC 39 ms
26,016 KB
testcase_07 AC 39 ms
27,984 KB
testcase_08 AC 37 ms
27,724 KB
testcase_09 AC 39 ms
25,924 KB
testcase_10 AC 39 ms
25,788 KB
testcase_11 AC 38 ms
25,628 KB
testcase_12 AC 37 ms
27,856 KB
testcase_13 AC 39 ms
28,092 KB
testcase_14 AC 39 ms
26,028 KB
testcase_15 AC 38 ms
25,904 KB
testcase_16 AC 39 ms
25,912 KB
testcase_17 AC 38 ms
27,796 KB
testcase_18 AC 38 ms
23,736 KB
testcase_19 AC 41 ms
26,140 KB
testcase_20 AC 40 ms
26,008 KB
testcase_21 AC 37 ms
27,660 KB
testcase_22 AC 37 ms
25,484 KB
testcase_23 AC 39 ms
25,744 KB
testcase_24 AC 40 ms
26,140 KB
testcase_25 AC 32 ms
25,244 KB
testcase_26 AC 32 ms
24,988 KB
testcase_27 AC 33 ms
25,220 KB
testcase_28 AC 33 ms
27,412 KB
testcase_29 AC 33 ms
25,352 KB
testcase_30 AC 32 ms
25,136 KB
testcase_31 AC 33 ms
25,240 KB
testcase_32 AC 32 ms
27,328 KB
testcase_33 AC 34 ms
25,208 KB
testcase_34 AC 33 ms
27,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

internal class Program
{
    public static void Main(string[] args)
    {
        var d = int.Parse(Console.ReadLine());
        var nums = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        for (int i = d; i >= 3; i--)
        {
            nums[i - 2] += nums[i];
            nums[i] = 0;
        }
        int modD = 0;
        for (int i = Math.Min(2, d); i >= 0; i--)
        {
            if (nums[i] != 0)
            {
                modD = i;
                break;
            }
        }
        Console.WriteLine(modD);
        for (int i = 0; i < modD; i++)
        {
            Console.Write(nums[i] + " ");
        }
        Console.WriteLine(nums[modD]);
    }
}
0