結果

問題 No.40 多項式の割り算
ユーザー tsunabittsunabit
提出日時 2019-09-06 12:14:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 234 ms / 5,000 ms
コード長 1,178 bytes
コンパイル時間 5,576 ms
コンパイル使用メモリ 83,660 KB
実行使用メモリ 57,772 KB
最終ジャッジ日時 2024-06-23 18:45:24
合計ジャッジ時間 12,755 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
55,184 KB
testcase_01 AC 152 ms
55,144 KB
testcase_02 AC 112 ms
52,744 KB
testcase_03 AC 164 ms
55,208 KB
testcase_04 AC 234 ms
56,552 KB
testcase_05 AC 214 ms
54,744 KB
testcase_06 AC 233 ms
55,540 KB
testcase_07 AC 215 ms
55,612 KB
testcase_08 AC 163 ms
55,220 KB
testcase_09 AC 228 ms
56,720 KB
testcase_10 AC 233 ms
55,684 KB
testcase_11 AC 197 ms
55,532 KB
testcase_12 AC 181 ms
55,072 KB
testcase_13 AC 228 ms
55,648 KB
testcase_14 AC 226 ms
56,612 KB
testcase_15 AC 203 ms
55,320 KB
testcase_16 AC 230 ms
55,676 KB
testcase_17 AC 181 ms
54,996 KB
testcase_18 AC 213 ms
55,620 KB
testcase_19 AC 228 ms
57,772 KB
testcase_20 AC 196 ms
55,264 KB
testcase_21 AC 181 ms
54,920 KB
testcase_22 AC 187 ms
55,232 KB
testcase_23 AC 220 ms
55,468 KB
testcase_24 AC 224 ms
55,616 KB
testcase_25 AC 161 ms
55,012 KB
testcase_26 AC 159 ms
55,004 KB
testcase_27 AC 158 ms
55,256 KB
testcase_28 AC 162 ms
54,824 KB
testcase_29 AC 152 ms
55,136 KB
testcase_30 AC 152 ms
54,896 KB
testcase_31 AC 156 ms
55,228 KB
testcase_32 AC 157 ms
55,180 KB
testcase_33 AC 160 ms
55,120 KB
testcase_34 AC 159 ms
55,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No40 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = Integer.parseInt(sc.nextLine());
		String[] t = sc.nextLine().split(" ");
//		System.out.println("d = " + d);
		
		int[] a = new int[d+1];
		for(int i = 0; i < d+1; i++) {
			a[i] = Integer.parseInt(t[i]);
		}
//		System.out.println(Arrays.toString(a));
		int[] w = {0, -1, 0, 1};
		for(int i = a.length-1; i > 2; i--) {
			int te = a[i] / w[3];
//			for(int j = w.length-1; j >= 0; j--) {
			for(int c = 0; c < w.length; c++) {
				a[i-c] = a[i-c] - w[3-c]*te;
			}
//			System.out.println(Arrays.toString(a));
		}
//		System.out.println(Arrays.toString(a));
		int ji = 0;
		String str = "";
		int cc = a.length >= 3? 2 : a.length-1;
//		for(int i = 2; -1 < i; i--) {
		for(int i = cc; -1 < i; i--) {
			if(a[i] != 0 && ji < i) {
				ji = i;
			}
			if(a[i] == 0) {
				if(!"".equals(str)) {
					str = a[i] + " " + str;
				}
			}else {
				str = a[i] + " " + str;
			}
		}
		System.out.println(ji);
		if("".equals(str)) {
			System.out.println(0);
		}else {
			System.out.println(str.trim());
		}
		
	}
}
0