結果

問題 No.40 多項式の割り算
ユーザー takeya_okinotakeya_okino
提出日時 2017-10-27 18:57:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 294 ms / 5,000 ms
コード長 731 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 76,384 KB
実行使用メモリ 49,288 KB
最終ジャッジ日時 2024-11-21 21:21:28
合計ジャッジ時間 10,992 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,776 KB
testcase_01 AC 148 ms
42,812 KB
testcase_02 AC 124 ms
41,172 KB
testcase_03 AC 149 ms
42,368 KB
testcase_04 AC 269 ms
48,296 KB
testcase_05 AC 277 ms
47,652 KB
testcase_06 AC 294 ms
48,404 KB
testcase_07 AC 275 ms
48,496 KB
testcase_08 AC 187 ms
43,252 KB
testcase_09 AC 267 ms
48,112 KB
testcase_10 AC 285 ms
48,372 KB
testcase_11 AC 257 ms
47,056 KB
testcase_12 AC 245 ms
46,444 KB
testcase_13 AC 276 ms
49,288 KB
testcase_14 AC 268 ms
48,280 KB
testcase_15 AC 268 ms
48,488 KB
testcase_16 AC 282 ms
48,264 KB
testcase_17 AC 232 ms
44,756 KB
testcase_18 AC 285 ms
47,884 KB
testcase_19 AC 287 ms
48,352 KB
testcase_20 AC 261 ms
47,016 KB
testcase_21 AC 231 ms
45,876 KB
testcase_22 AC 222 ms
45,360 KB
testcase_23 AC 261 ms
47,964 KB
testcase_24 AC 277 ms
47,472 KB
testcase_25 AC 162 ms
42,588 KB
testcase_26 AC 161 ms
42,440 KB
testcase_27 AC 161 ms
42,752 KB
testcase_28 AC 114 ms
41,320 KB
testcase_29 AC 163 ms
42,572 KB
testcase_30 AC 165 ms
42,760 KB
testcase_31 AC 165 ms
42,724 KB
testcase_32 AC 162 ms
42,760 KB
testcase_33 AC 160 ms
42,492 KB
testcase_34 AC 147 ms
42,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int d = sc.nextInt();
    int r0 = 0;
    int r1 = 0;
    int r2 = 0;
    for(int i = 0; i <= d; i++) {
      int a = sc.nextInt();
      if(i == 0) r0 = a;
      r1 += a;
      if(i % 2 == 0) {
        r2 += a;
      } else {
        r2 -= a;
      }
    }
    int c = r0;
    int a = (r1 + r2 - 2 * c) / 2;
    int b = r1 - a - c;
    if(a != 0) {
      System.out.println(2);
      System.out.println(c + " " + b + " " + a);
    } else if(b != 0) {
      System.out.println(1);
      System.out.println(c + " " + b);
    } else {
      System.out.println(0);
      System.out.println(c);
    }
  }
}
0