結果
問題 | No.3002 多項式の割り算 〜easy〜 |
ユーザー |
|
提出日時 | 2025-01-26 13:10:13 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 719 bytes |
コンパイル時間 | 5,156 ms |
コンパイル使用メモリ | 311,916 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2025-01-26 13:10:19 |
合計ジャッジ時間 | 6,477 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
typedef long long ll;typedef long double ld;#include <bits/stdc++.h>using namespace std;// #define int long long#include <ext/pb_ds/assoc_container.hpp>using namespace __gnu_pbds;template<typename T>using ordered_set = tree<T, null_type, std::less<T>, rb_tree_tag, tree_order_statistics_node_update>;// std::cout << *s.find_by_order(1) << std::endl; // 2signed main(){// これがないと落ちることがあるios_base::sync_with_stdio(false);cin.tie(0);ll a,b;cin >> a>>b;vector<ll> c(b+1);c[b] = a;ll now = b;while(now-2>=0){auto v = c[now];c[now-1] -= v;c[now-2] -= v;now--;}cout << c[1]<<" "<<c[0] << endl;}