結果
問題 | No.854 公平なりんご分配 |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-07-26 21:46:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,276 bytes |
コンパイル時間 | 1,492 ms |
コンパイル使用メモリ | 110,672 KB |
実行使用メモリ | 41,984 KB |
最終ジャッジ日時 | 2024-07-02 06:55:34 |
合計ジャッジ時間 | 9,955 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,996 KB |
testcase_01 | AC | 4 ms
6,940 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 4 ms
7,000 KB |
testcase_05 | AC | 4 ms
6,948 KB |
testcase_06 | AC | 4 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,944 KB |
testcase_12 | AC | 4 ms
6,996 KB |
testcase_13 | AC | 4 ms
6,944 KB |
testcase_14 | AC | 3 ms
6,944 KB |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | AC | 3 ms
7,000 KB |
testcase_17 | AC | 4 ms
6,992 KB |
testcase_18 | AC | 4 ms
6,940 KB |
testcase_19 | AC | 4 ms
6,944 KB |
testcase_20 | AC | 4 ms
6,948 KB |
testcase_21 | AC | 4 ms
6,996 KB |
testcase_22 | AC | 6 ms
6,996 KB |
testcase_23 | AC | 5 ms
6,940 KB |
testcase_24 | AC | 7 ms
7,896 KB |
testcase_25 | AC | 6 ms
7,384 KB |
testcase_26 | AC | 7 ms
6,944 KB |
testcase_27 | AC | 6 ms
6,944 KB |
testcase_28 | AC | 5 ms
7,136 KB |
testcase_29 | AC | 5 ms
6,940 KB |
testcase_30 | AC | 5 ms
6,944 KB |
testcase_31 | AC | 7 ms
6,944 KB |
testcase_32 | AC | 74 ms
41,468 KB |
testcase_33 | AC | 82 ms
18,304 KB |
testcase_34 | AC | 161 ms
39,808 KB |
testcase_35 | AC | 106 ms
32,256 KB |
testcase_36 | AC | 33 ms
6,656 KB |
testcase_37 | AC | 69 ms
28,416 KB |
testcase_38 | AC | 54 ms
24,064 KB |
testcase_39 | AC | 282 ms
41,984 KB |
testcase_40 | AC | 88 ms
16,896 KB |
testcase_41 | AC | 105 ms
26,752 KB |
testcase_42 | AC | 143 ms
39,168 KB |
testcase_43 | AC | 182 ms
28,032 KB |
testcase_44 | AC | 194 ms
36,608 KB |
testcase_45 | AC | 100 ms
11,264 KB |
testcase_46 | AC | 268 ms
36,224 KB |
testcase_47 | AC | 87 ms
22,144 KB |
testcase_48 | AC | 131 ms
38,400 KB |
testcase_49 | AC | 119 ms
39,296 KB |
testcase_50 | AC | 65 ms
28,288 KB |
testcase_51 | AC | 258 ms
37,760 KB |
testcase_52 | TLE | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
testcase_74 | -- | - |
testcase_75 | -- | - |
testcase_76 | -- | - |
testcase_77 | -- | - |
testcase_78 | -- | - |
testcase_79 | -- | - |
testcase_80 | -- | - |
testcase_81 | -- | - |
testcase_82 | -- | - |
testcase_83 | -- | - |
testcase_84 | -- | - |
testcase_85 | -- | - |
testcase_86 | -- | - |
testcase_87 | -- | - |
testcase_88 | -- | - |
testcase_89 | -- | - |
testcase_90 | -- | - |
testcase_91 | -- | - |
testcase_92 | -- | - |
testcase_93 | -- | - |
ソースコード
#pragma GCC optimize ("Ofast") #pragma GCC optimize ("unroll-loops") #pragma GCC target ("avx") #include <cassert> #include <cmath> #include <cstdint> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; using Int = long long; template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; }; template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; } template <class T> void chmin(T &t, const T &f) { if (t > f) t = f; } template <class T> void chmax(T &t, const T &f) { if (t < f) t = f; } constexpr int LIM = 2005; bool isnp[100010]; int primesLen; int primes[320]; int N; int A[100010]; int Q; int M[100010], L[100010], R[100010]; int sums[320][100010]; int main() { for (int p = 2; p < LIM; ++p) { if (!isnp[p]) { for (int n = 2 * p; n < LIM; n += p) { isnp[n] = true; } } } for (int p = 2; p < LIM; ++p) { if (!isnp[p]) { primes[primesLen++] = p; } } cerr << "|primes| = " << primesLen << endl; for (; ~scanf("%d", &N); ) { for (int i = 0; i < N; ++i) { scanf("%d", &A[i]); } scanf("%d", &Q); for (int q = 0; q < Q; ++q) { scanf("%d%d%d", &M[q], &L[q], &R[q]); --L[q]; } for (int h = 0; h < primesLen; ++h) { const int p = primes[h]; for (int i = 0; i < N; ++i) { int e = 0; for (int a = A[i]; a % p == 0; a /= p) { ++e; } sums[h][i + 1] = sums[h][i] + e; } } for (int q = 0; q < Q; ++q) { bool ans = true; int m = M[q]; for (int h = 0; h < primesLen; ++h) { const int p = primes[h]; int e = 0; for (; m % p == 0; m /= p) { ++e; } ans = ans && (sums[h][R[q]] - sums[h][L[q]] >= e); } ans = ans && (m == 1); puts(ans ? "Yes" : "NO"); } } return 0; }