結果

問題 No.40 多項式の割り算
ユーザー kou6839kou6839
提出日時 2014-11-18 23:14:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 270 ms / 5,000 ms
コード長 1,025 bytes
コンパイル時間 2,799 ms
コンパイル使用メモリ 81,160 KB
実行使用メモリ 60,676 KB
最終ジャッジ日時 2025-01-02 17:55:38
合計ジャッジ時間 11,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
55,244 KB
testcase_01 AC 142 ms
56,252 KB
testcase_02 AC 112 ms
54,288 KB
testcase_03 AC 141 ms
55,444 KB
testcase_04 AC 244 ms
59,848 KB
testcase_05 AC 255 ms
59,648 KB
testcase_06 AC 270 ms
60,528 KB
testcase_07 AC 257 ms
60,064 KB
testcase_08 AC 172 ms
55,940 KB
testcase_09 AC 256 ms
60,228 KB
testcase_10 AC 259 ms
59,856 KB
testcase_11 AC 250 ms
60,676 KB
testcase_12 AC 217 ms
59,212 KB
testcase_13 AC 254 ms
60,032 KB
testcase_14 AC 241 ms
59,600 KB
testcase_15 AC 244 ms
60,176 KB
testcase_16 AC 265 ms
60,148 KB
testcase_17 AC 220 ms
59,160 KB
testcase_18 AC 261 ms
59,892 KB
testcase_19 AC 258 ms
59,880 KB
testcase_20 AC 241 ms
60,468 KB
testcase_21 AC 207 ms
59,828 KB
testcase_22 AC 205 ms
59,136 KB
testcase_23 AC 227 ms
60,108 KB
testcase_24 AC 248 ms
59,816 KB
testcase_25 AC 144 ms
55,880 KB
testcase_26 AC 141 ms
56,480 KB
testcase_27 AC 148 ms
56,324 KB
testcase_28 AC 117 ms
54,272 KB
testcase_29 AC 144 ms
55,920 KB
testcase_30 AC 140 ms
56,060 KB
testcase_31 AC 145 ms
56,188 KB
testcase_32 AC 146 ms
55,684 KB
testcase_33 AC 146 ms
56,460 KB
testcase_34 AC 145 ms
56,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] aa = new int[n+1];
		for(int i=n;i>=0;i--){
			aa[i]=sc.nextInt();
		}
		if(n==2){
			String g="";
			for(int i=n;i>=0;i--){
				g+=aa[i]+" ";
			}
			System.out.println(2);
			System.out.println(g.trim());
			return;
		}else if(n==1){
			String g="";
			for(int i=n;i>=0;i--){
				g+=aa[i]+" ";
			}
			System.out.println(1);
			System.out.println(g.trim());
			return;
		}else if(n==0){
			System.out.println(0);
			System.out.println(aa[0]);
			return;
		}
		for(int i=0;i<=n-3;i++){
			int temp=aa[i];
			aa[i]=0;
			aa[i+2]-=-1*temp;
		}
		if(aa[n-2]!=0){
			System.out.println(2);
			System.out.println(aa[n]+" "+aa[n-1]+" "+aa[n-2]);
			return;
		}else if(aa[n-1]!=0){
			System.out.println(1);
			System.out.println(aa[n]+" "+aa[n-1]);
		}else{
			System.out.println(0);
			System.out.println(aa[n]);
		}
	}
}	
0