結果

問題 No.40 多項式の割り算
ユーザー kou6839kou6839
提出日時 2014-11-18 23:10:17
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 747 bytes
コンパイル時間 2,913 ms
コンパイル使用メモリ 80,636 KB
実行使用メモリ 57,636 KB
最終ジャッジ日時 2025-01-02 17:45:53
合計ジャッジ時間 11,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 145 ms
45,548 KB
testcase_02 AC 111 ms
44,392 KB
testcase_03 AC 141 ms
46,304 KB
testcase_04 AC 249 ms
50,676 KB
testcase_05 AC 261 ms
50,240 KB
testcase_06 AC 265 ms
50,020 KB
testcase_07 AC 279 ms
50,292 KB
testcase_08 AC 165 ms
46,712 KB
testcase_09 AC 260 ms
50,580 KB
testcase_10 AC 271 ms
50,828 KB
testcase_11 AC 246 ms
51,172 KB
testcase_12 AC 220 ms
49,344 KB
testcase_13 AC 267 ms
50,252 KB
testcase_14 AC 256 ms
51,160 KB
testcase_15 AC 249 ms
50,444 KB
testcase_16 AC 271 ms
50,368 KB
testcase_17 AC 219 ms
48,852 KB
testcase_18 AC 259 ms
50,588 KB
testcase_19 AC 269 ms
49,916 KB
testcase_20 AC 245 ms
50,464 KB
testcase_21 AC 210 ms
48,196 KB
testcase_22 AC 201 ms
47,864 KB
testcase_23 AC 231 ms
50,016 KB
testcase_24 AC 253 ms
50,020 KB
testcase_25 AC 152 ms
46,324 KB
testcase_26 AC 147 ms
46,580 KB
testcase_27 AC 149 ms
46,332 KB
testcase_28 WA -
testcase_29 AC 145 ms
46,460 KB
testcase_30 AC 144 ms
46,464 KB
testcase_31 AC 148 ms
46,432 KB
testcase_32 WA -
testcase_33 AC 149 ms
46,824 KB
testcase_34 AC 145 ms
46,716 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<3){
			String g="";
			for(int i=n;i>=0;i--){
				g+=aa[i]+" ";
			}
			System.out.println(g.trim());
			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