結果

問題 No.40 多項式の割り算
ユーザー holegumaholeguma
提出日時 2015-08-11 02:05:13
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 720 bytes
コンパイル時間 1,897 ms
コンパイル使用メモリ 78,412 KB
実行使用メモリ 50,492 KB
最終ジャッジ日時 2024-07-18 06:37:35
合計ジャッジ時間 7,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,276 KB
testcase_01 AC 111 ms
41,216 KB
testcase_02 AC 51 ms
37,188 KB
testcase_03 AC 110 ms
41,092 KB
testcase_04 AC 140 ms
42,100 KB
testcase_05 AC 146 ms
42,568 KB
testcase_06 AC 150 ms
42,584 KB
testcase_07 AC 147 ms
42,692 KB
testcase_08 AC 114 ms
41,128 KB
testcase_09 AC 147 ms
42,116 KB
testcase_10 AC 151 ms
42,028 KB
testcase_11 AC 146 ms
42,080 KB
testcase_12 AC 128 ms
41,260 KB
testcase_13 AC 155 ms
41,956 KB
testcase_14 AC 141 ms
41,880 KB
testcase_15 AC 142 ms
41,872 KB
testcase_16 AC 148 ms
42,372 KB
testcase_17 AC 126 ms
41,536 KB
testcase_18 AC 147 ms
41,640 KB
testcase_19 AC 163 ms
41,784 KB
testcase_20 AC 140 ms
41,520 KB
testcase_21 AC 127 ms
41,704 KB
testcase_22 AC 120 ms
41,440 KB
testcase_23 AC 137 ms
41,524 KB
testcase_24 AC 140 ms
41,688 KB
testcase_25 AC 110 ms
41,264 KB
testcase_26 AC 116 ms
41,140 KB
testcase_27 AC 116 ms
41,384 KB
testcase_28 RE -
testcase_29 AC 111 ms
41,028 KB
testcase_30 AC 106 ms
40,980 KB
testcase_31 AC 104 ms
41,544 KB
testcase_32 AC 108 ms
41,096 KB
testcase_33 AC 110 ms
41,388 KB
testcase_34 AC 110 ms
41,496 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());
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