結果
問題 | No.40 多項式の割り算 |
ユーザー | tsunabit |
提出日時 | 2019-09-06 12:04:47 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,099 bytes |
コンパイル時間 | 3,573 ms |
コンパイル使用メモリ | 79,880 KB |
実行使用メモリ | 57,936 KB |
最終ジャッジ日時 | 2024-06-23 18:36:01 |
合計ジャッジ時間 | 11,465 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
import java.util.*; import java.io.*; import java.math.*; public class No40 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int d = Integer.parseInt(sc.nextLine()); String[] t = sc.nextLine().split(" "); // System.out.println("d = " + d); int[] a = new int[d+1]; for(int i = 0; i < d+1; i++) { a[i] = Integer.parseInt(t[i]); } // System.out.println(Arrays.toString(a)); int[] w = {0, -1, 0, 1}; for(int i = a.length-1; i > 2; i--) { int te = a[i] / w[3]; // for(int j = w.length-1; j >= 0; j--) { for(int c = 0; c < w.length; c++) { a[i-c] = a[i-c] - w[3-c]*te; } // System.out.println(Arrays.toString(a)); } System.out.println(Arrays.toString(a)); int ji = 0; String str = ""; for(int i = 2; -1 < i; i--) { if(a[i] != 0 && ji < i) { ji = i; } if(a[i] == 0) { if(!"".equals(str)) { str = a[i] + " " + str; } }else { str = a[i] + " " + str; } } System.out.println(ji); if("".equals(str)) { System.out.println(0); }else { System.out.println(str.trim()); } } }