結果

問題 No.40 多項式の割り算
ユーザー holegumaholeguma
提出日時 2015-08-11 02:09:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 884 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 78,264 KB
実行使用メモリ 54,576 KB
最終ジャッジ日時 2024-07-18 06:37:44
合計ジャッジ時間 7,499 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 108 ms
54,192 KB
testcase_02 AC 48 ms
50,388 KB
testcase_03 AC 95 ms
52,864 KB
testcase_04 AC 142 ms
54,560 KB
testcase_05 AC 137 ms
54,224 KB
testcase_06 AC 153 ms
53,872 KB
testcase_07 AC 156 ms
54,040 KB
testcase_08 AC 109 ms
53,856 KB
testcase_09 AC 150 ms
54,204 KB
testcase_10 AC 156 ms
54,576 KB
testcase_11 AC 136 ms
54,452 KB
testcase_12 AC 126 ms
53,944 KB
testcase_13 AC 142 ms
54,112 KB
testcase_14 AC 134 ms
54,444 KB
testcase_15 AC 137 ms
54,420 KB
testcase_16 AC 144 ms
53,996 KB
testcase_17 AC 127 ms
54,084 KB
testcase_18 AC 145 ms
54,140 KB
testcase_19 AC 162 ms
53,976 KB
testcase_20 AC 130 ms
54,168 KB
testcase_21 AC 117 ms
54,056 KB
testcase_22 AC 122 ms
54,336 KB
testcase_23 AC 130 ms
54,140 KB
testcase_24 AC 145 ms
54,320 KB
testcase_25 AC 114 ms
53,864 KB
testcase_26 AC 113 ms
53,784 KB
testcase_27 AC 109 ms
54,104 KB
testcase_28 WA -
testcase_29 AC 114 ms
53,832 KB
testcase_30 AC 108 ms
54,348 KB
testcase_31 AC 111 ms
53,996 KB
testcase_32 WA -
testcase_33 AC 108 ms
53,928 KB
testcase_34 AC 116 ms
53,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.StringTokenizer;

class Main{

static final PrintWriter out=new PrintWriter(System.out);

public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null&&!line.isEmpty()){
int d=Integer.parseInt(line);
int[] a=new int[d+1];
StringTokenizer st=new StringTokenizer(br.readLine());
for(int i=0;i<=d;i++) a[i]=Integer.parseInt(st.nextToken());
if(d==0){
out.println(a[0]);
continue;
}
if(d==1) {
out.printf("%d %d\r\n",a[0],a[1]);
continue;
}
if(d==2){
out.printf("%d %d %d\r\n",a[0],a[1],a[2]);
continue;
}
for(int i=d;i>=3;i--) a[i-2]+=a[i];
int dd=a[2]==0?a[1]==0?0:1:2;
out.println(dd);
if(dd==0) out.println(a[0]);
if(dd==1) out.printf("%d %d\r\n",a[0],a[1]);
if(dd==2) out.printf("%d %d %d\r\n",a[0],a[1],a[2]);
out.flush();
}
}
}
0