結果
問題 | No.1330 Multiply or Divide |
ユーザー | pyonth |
提出日時 | 2021-01-08 21:36:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,334 bytes |
コンパイル時間 | 2,016 ms |
コンパイル使用メモリ | 201,712 KB |
実行使用メモリ | 5,760 KB |
最終ジャッジ日時 | 2024-11-16 10:34:23 |
合計ジャッジ時間 | 4,198 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 24 ms
5,632 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 21 ms
5,760 KB |
testcase_07 | AC | 93 ms
5,632 KB |
testcase_08 | AC | 31 ms
5,504 KB |
testcase_09 | AC | 36 ms
5,632 KB |
testcase_10 | AC | 31 ms
5,632 KB |
testcase_11 | AC | 28 ms
5,632 KB |
testcase_12 | AC | 31 ms
5,504 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 27 ms
5,632 KB |
testcase_19 | AC | 27 ms
5,504 KB |
testcase_20 | AC | 27 ms
5,632 KB |
testcase_21 | AC | 27 ms
5,504 KB |
testcase_22 | AC | 27 ms
5,504 KB |
testcase_23 | AC | 28 ms
5,504 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 20 ms
5,248 KB |
testcase_35 | AC | 7 ms
5,248 KB |
testcase_36 | AC | 18 ms
5,248 KB |
testcase_37 | AC | 17 ms
5,248 KB |
testcase_38 | AC | 11 ms
5,248 KB |
testcase_39 | AC | 8 ms
5,248 KB |
testcase_40 | AC | 10 ms
5,248 KB |
testcase_41 | AC | 5 ms
5,248 KB |
testcase_42 | AC | 16 ms
5,248 KB |
testcase_43 | AC | 17 ms
5,248 KB |
testcase_44 | AC | 21 ms
5,632 KB |
testcase_45 | AC | 20 ms
5,504 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define repl(i, l, r) for (ll i = (l); i < (r); i++) #define rep(i, n) repl(i, 0, n) #define CST(x) cout << fixed << setprecision(x) using ll = long long; constexpr ll MOD = 1000000007; constexpr int inf = 1e9 + 10; constexpr ll INF = (ll)4e18 + 10; constexpr int dx[9] = {1, 0, -1, 0, 1, -1, -1, 1, 0}; constexpr int dy[9] = {0, 1, 0, -1, 1, 1, -1, -1, 0}; template <class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template <class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); int n; ll m, p; cin >> n >> m >> p; ll a[n]; ll mx = 0; vector<int> cnt(n); rep(i, n) { cin >> a[i]; chmax(mx, a[i]); while (a[i] % p == 0) { cnt[i]++; a[i] /= p; } } ll M = 0, C = 0; rep(i, n) if (chmax(M, a[i])) C = cnt[i]; if (M == 1) { if (mx > m) puts("1"); else puts("-1"); return 0; } ll now = 1, ans = 0; while (now * mx <= m) { now *= M; ans += C + 1; } cout << ans + 1 << endl; return 0; }