結果

問題 No.40 多項式の割り算
ユーザー kou6839kou6839
提出日時 2014-11-18 23:10:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 747 bytes
コンパイル時間 3,196 ms
コンパイル使用メモリ 79,592 KB
実行使用メモリ 59,836 KB
最終ジャッジ日時 2024-06-10 20:29:55
合計ジャッジ時間 11,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 165 ms
54,972 KB
testcase_02 AC 124 ms
53,784 KB
testcase_03 AC 149 ms
54,712 KB
testcase_04 AC 260 ms
58,712 KB
testcase_05 AC 279 ms
59,684 KB
testcase_06 AC 281 ms
59,752 KB
testcase_07 AC 281 ms
59,792 KB
testcase_08 AC 188 ms
54,936 KB
testcase_09 AC 263 ms
58,688 KB
testcase_10 AC 282 ms
59,828 KB
testcase_11 AC 294 ms
59,244 KB
testcase_12 AC 253 ms
58,400 KB
testcase_13 AC 282 ms
59,772 KB
testcase_14 AC 258 ms
58,964 KB
testcase_15 AC 257 ms
59,116 KB
testcase_16 AC 285 ms
59,520 KB
testcase_17 AC 239 ms
58,120 KB
testcase_18 AC 277 ms
59,644 KB
testcase_19 AC 268 ms
59,836 KB
testcase_20 AC 258 ms
59,300 KB
testcase_21 AC 230 ms
58,068 KB
testcase_22 AC 223 ms
57,652 KB
testcase_23 AC 253 ms
59,672 KB
testcase_24 AC 275 ms
59,716 KB
testcase_25 AC 161 ms
54,980 KB
testcase_26 AC 157 ms
55,152 KB
testcase_27 AC 157 ms
55,068 KB
testcase_28 WA -
testcase_29 AC 158 ms
54,924 KB
testcase_30 AC 167 ms
54,912 KB
testcase_31 AC 150 ms
55,044 KB
testcase_32 WA -
testcase_33 AC 157 ms
55,192 KB
testcase_34 AC 153 ms
54,904 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