結果

問題 No.40 多項式の割り算
ユーザー kou6839kou6839
提出日時 2014-11-18 23:14:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 257 ms / 5,000 ms
コード長 1,025 bytes
コンパイル時間 2,974 ms
コンパイル使用メモリ 79,440 KB
実行使用メモリ 48,532 KB
最終ジャッジ日時 2024-06-10 20:35:16
合計ジャッジ時間 10,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
42,276 KB
testcase_01 AC 135 ms
42,532 KB
testcase_02 AC 99 ms
40,180 KB
testcase_03 AC 139 ms
42,336 KB
testcase_04 AC 228 ms
47,740 KB
testcase_05 AC 236 ms
47,980 KB
testcase_06 AC 246 ms
48,500 KB
testcase_07 AC 248 ms
48,296 KB
testcase_08 AC 153 ms
42,572 KB
testcase_09 AC 236 ms
46,960 KB
testcase_10 AC 247 ms
48,488 KB
testcase_11 AC 228 ms
47,720 KB
testcase_12 AC 214 ms
47,084 KB
testcase_13 AC 247 ms
48,404 KB
testcase_14 AC 224 ms
46,984 KB
testcase_15 AC 227 ms
47,940 KB
testcase_16 AC 246 ms
48,532 KB
testcase_17 AC 212 ms
46,644 KB
testcase_18 AC 247 ms
48,140 KB
testcase_19 AC 257 ms
48,304 KB
testcase_20 AC 229 ms
47,680 KB
testcase_21 AC 198 ms
44,276 KB
testcase_22 AC 192 ms
44,288 KB
testcase_23 AC 221 ms
46,860 KB
testcase_24 AC 252 ms
47,896 KB
testcase_25 AC 146 ms
42,848 KB
testcase_26 AC 150 ms
42,636 KB
testcase_27 AC 139 ms
42,520 KB
testcase_28 AC 106 ms
40,012 KB
testcase_29 AC 134 ms
42,336 KB
testcase_30 AC 150 ms
42,664 KB
testcase_31 AC 147 ms
42,612 KB
testcase_32 AC 139 ms
42,580 KB
testcase_33 AC 133 ms
42,544 KB
testcase_34 AC 139 ms
42,576 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