結果

問題 No.3002 多項式の割り算 〜easy〜
ユーザー tenten
提出日時 2025-01-20 11:12:25
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 1,315 bytes
コンパイル時間 3,654 ms
コンパイル使用メモリ 80,680 KB
実行使用メモリ 51,332 KB
最終ジャッジ日時 2025-01-20 11:12:33
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int a = sc.nextInt();
        int b = sc.nextInt();
        long[] dp = new long[b + 1];
        dp[b] = a;
        for (int i = b - 2; i >= 0; i--) {
            dp[i + 1] -= dp[i + 2];
            dp[i] -= dp[i + 2];
        }
        System.out.println(dp[1] + " " + dp[0]);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0