結果
問題 | No.854 公平なりんご分配 |
ユーザー | rlangevin |
提出日時 | 2023-10-23 22:38:28 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,007 bytes |
コンパイル時間 | 5,171 ms |
コンパイル使用メモリ | 310,780 KB |
実行使用メモリ | 76,928 KB |
最終ジャッジ日時 | 2024-09-22 15:56:18 |
合計ジャッジ時間 | 13,116 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 3 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 4 ms
6,940 KB |
testcase_23 | AC | 4 ms
6,944 KB |
testcase_24 | AC | 6 ms
6,940 KB |
testcase_25 | AC | 4 ms
6,944 KB |
testcase_26 | AC | 7 ms
6,944 KB |
testcase_27 | AC | 5 ms
6,940 KB |
testcase_28 | AC | 3 ms
6,944 KB |
testcase_29 | AC | 3 ms
6,944 KB |
testcase_30 | AC | 4 ms
6,944 KB |
testcase_31 | AC | 6 ms
6,940 KB |
testcase_32 | AC | 73 ms
53,504 KB |
testcase_33 | AC | 49 ms
30,208 KB |
testcase_34 | AC | 110 ms
72,832 KB |
testcase_35 | AC | 85 ms
57,984 KB |
testcase_36 | AC | 19 ms
6,940 KB |
testcase_37 | AC | 69 ms
50,432 KB |
testcase_38 | AC | 55 ms
41,600 KB |
testcase_39 | AC | 130 ms
76,928 KB |
testcase_40 | AC | 47 ms
26,240 KB |
testcase_41 | AC | 73 ms
46,976 KB |
testcase_42 | AC | 105 ms
71,424 KB |
testcase_43 | AC | 86 ms
48,896 KB |
testcase_44 | AC | 107 ms
66,304 KB |
testcase_45 | AC | 48 ms
15,360 KB |
testcase_46 | AC | 115 ms
65,536 KB |
testcase_47 | AC | 56 ms
37,760 KB |
testcase_48 | AC | 101 ms
70,272 KB |
testcase_49 | AC | 102 ms
71,936 KB |
testcase_50 | AC | 68 ms
50,048 KB |
testcase_51 | AC | 120 ms
68,864 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 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using P = pair<int, int>; using mint = modint1000000007; #define rep(i, n) for (int i = 0; i < (int)(n); i++) vector<int> Sieve(int n) { vector<int> lst(n + 1, 1); vector<int> temp; for (int i = 2; i <= n; i++) { if (lst[i]) { for (int j = 2 * i; j <= n; j += i) { lst[j] = 0; } } } for (int i = 2; i <= n; i++){ if (lst[i]){ temp.push_back(i); } } return temp; } int main() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); int N; cin >> N; vector<int> A(N); rep(i, N) cin >> A[i]; vector<int> Prime = Sieve(2000); int M = (int)Prime.size(); vector<vector<int>> D(M, vector<int>(N, 0)); vector<vector<int>> Dc(M, vector<int>(N + 1, 0)); rep(i, M){ rep(j, N){ while (A[j] % Prime[i] == 0){ A[j] /= Prime[i]; D[i][j]++; } } rep(j, N){ Dc[i][j + 1] = Dc[i][j] + D[i][j]; } } int Q; cin >> Q; rep(_, Q){ int P, L, R; int flag = 1; cin >> P >> L >> R; L--; rep(i, M){ int cnt = 0; if (P == 1){ cout << "Yes" << "\n"; flag = 0; break; } while (P % Prime[i] == 0){ cnt++; P /= Prime[i]; } if (cnt == 0){ continue; } if (cnt > Dc[i][R] - Dc[i][L]){ cout << "NO" << "\n"; flag = 0; break; } } if (flag){ if (P == 1){ cout << "Yes" << "\n"; } else{ cout << "NO" << "\n"; } } } }