結果
問題 | No.10 +か×か |
ユーザー | kenken714 |
提出日時 | 2019-04-18 19:49:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 10 ms / 5,000 ms |
コード長 | 1,093 bytes |
コンパイル時間 | 663 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 8,016 KB |
最終ジャッジ日時 | 2024-12-14 15:42:06 |
合計ジャッジ時間 | 1,291 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 10 ms
7,804 KB |
testcase_04 | AC | 9 ms
7,756 KB |
testcase_05 | AC | 10 ms
7,496 KB |
testcase_06 | AC | 10 ms
8,016 KB |
testcase_07 | AC | 9 ms
7,696 KB |
testcase_08 | AC | 6 ms
6,824 KB |
testcase_09 | AC | 5 ms
6,816 KB |
testcase_10 | AC | 3 ms
6,820 KB |
testcase_11 | AC | 3 ms
6,816 KB |
ソースコード
#include <iostream> #include <string> #include <utility> #include <algorithm> #include <map> #include <set> #include <vector> #include <cmath> #include <cstdlib> #include <queue> #include <stack> #include <iomanip> using namespace std; #define REP(i, n) for(ll i = 0;i < n;i++) #define REPR(i, n) for(ll i = n;i >= 0;i--) #define FOR(i, m, n) for(ll i = m;i < n;i++) #define FORR(i, m, n) for(ll i = m;i >= n;i--) #define REPO(i, n) for(ll i = 1;i <= n;i++) #define ll long long #define INF (ll)1 << 60 #define MINF (-1 * INF) #define ALL(n) n.begin(),n.end() #define MOD 1000000007 #define P pair<ll, ll> ll n, d, s[60]; string ans; bool dp[60][110000]; int main() { cin >> n >> d; REP(i, n) cin >> s[i]; s[n] = d; dp[n][d] = true; FORR(i, n - 1, 1) { REP(j, 110000) { if (dp[i + 1][j]) { if (j % s[i] == 0)dp[i][j / s[i]] = true; if (j >= s[i])dp[i][j - s[i]] = true; } } } ll now = s[0]; REPO(i, n - 1) { if (dp[i + 1][now + s[i]]) { ans.push_back('+'); now += s[i]; } else { ans.push_back('*'); now *= s[i]; } } cout << ans << endl; }