結果

問題 No.40 多項式の割り算
ユーザー shinshin
提出日時 2022-06-05 16:28:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,138 bytes
コンパイル時間 3,780 ms
コンパイル使用メモリ 79,048 KB
実行使用メモリ 55,484 KB
最終ジャッジ日時 2024-09-21 04:12:40
合計ジャッジ時間 43,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,212 KB
testcase_01 AC 51 ms
36,608 KB
testcase_02 AC 52 ms
36,452 KB
testcase_03 AC 53 ms
37,188 KB
testcase_04 AC 1,277 ms
46,996 KB
testcase_05 WA -
testcase_06 AC 3,409 ms
48,872 KB
testcase_07 AC 4,016 ms
55,484 KB
testcase_08 AC 116 ms
42,872 KB
testcase_09 AC 1,781 ms
46,688 KB
testcase_10 AC 3,208 ms
46,652 KB
testcase_11 AC 1,129 ms
46,112 KB
testcase_12 WA -
testcase_13 AC 3,024 ms
46,636 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 3,012 ms
46,152 KB
testcase_17 AC 401 ms
45,832 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 341 ms
45,712 KB
testcase_22 AC 334 ms
46,968 KB
testcase_23 AC 859 ms
45,832 KB
testcase_24 WA -
testcase_25 AC 56 ms
36,552 KB
testcase_26 AC 54 ms
37,132 KB
testcase_27 WA -
testcase_28 AC 53 ms
36,844 KB
testcase_29 AC 54 ms
36,856 KB
testcase_30 AC 52 ms
37,080 KB
testcase_31 AC 54 ms
36,960 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 53 ms
36,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class No40 {

	public static void main(String[] args) throws IOException{
		//多項式の割り算
		String[] str = readStr();
		int D = Integer.parseInt(str[0]);
		int[] a = new int[D + 1];
		
		for(int i = 0;i <= D;i++) {
			a[D - i] = Integer.parseInt(str[1].split(" ")[i]);
		}
		
		for(int i = 0;i < D - 2;i++) {
			a[i + 2] += a[i];
			a[i] = 0;
		}
		
		int Dd = 0;
		for(int i = Math.max(0, D - 2);i <= D ;i++) {
			if(a[i] > 0) {
				Dd = D - i;
				break;
			}
			
		}
		
		System.out.println(Dd);
		for(int i = D;i >= D - Dd;i--) {
			System.out.print(a[i]);
			if(i == D - Dd) {
				System.out.println();
			}else {
				System.out.print(" ");
			}
		}



	}

	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}
}
0