結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,132 KB
testcase_01 AC 109 ms
54,036 KB
testcase_02 AC 47 ms
50,504 KB
testcase_03 AC 107 ms
54,256 KB
testcase_04 AC 134 ms
54,572 KB
testcase_05 AC 132 ms
54,464 KB
testcase_06 AC 158 ms
54,256 KB
testcase_07 AC 156 ms
54,208 KB
testcase_08 AC 107 ms
54,060 KB
testcase_09 AC 134 ms
54,156 KB
testcase_10 AC 141 ms
54,624 KB
testcase_11 AC 160 ms
54,468 KB
testcase_12 AC 123 ms
54,072 KB
testcase_13 AC 136 ms
53,724 KB
testcase_14 AC 135 ms
54,728 KB
testcase_15 AC 131 ms
54,364 KB
testcase_16 AC 144 ms
54,196 KB
testcase_17 AC 123 ms
53,964 KB
testcase_18 AC 142 ms
54,100 KB
testcase_19 AC 157 ms
54,120 KB
testcase_20 AC 127 ms
54,072 KB
testcase_21 AC 120 ms
53,928 KB
testcase_22 AC 113 ms
54,128 KB
testcase_23 AC 126 ms
54,116 KB
testcase_24 AC 148 ms
54,328 KB
testcase_25 AC 110 ms
54,016 KB
testcase_26 AC 120 ms
54,028 KB
testcase_27 AC 111 ms
54,092 KB
testcase_28 AC 46 ms
50,336 KB
testcase_29 AC 106 ms
54,068 KB
testcase_30 AC 112 ms
54,216 KB
testcase_31 AC 121 ms
53,956 KB
testcase_32 AC 106 ms
53,968 KB
testcase_33 AC 93 ms
52,692 KB
testcase_34 AC 114 ms
53,960 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||d==1||d==2){
out.println(d);
if(d==0) out.println(a[0]);
if(d==1) out.printf("%d %d\r\n",a[0],a[1]);
if(d==2) out.printf("%d %d %d\r\n",a[0],a[1],a[2]);
out.flush();
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