結果
問題 | No.854 公平なりんご分配 |
ユーザー | aya_se |
提出日時 | 2019-07-26 22:46:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,906 bytes |
コンパイル時間 | 860 ms |
コンパイル使用メモリ | 100,656 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-07-02 08:43:15 |
合計ジャッジ時間 | 12,156 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | RE | - |
testcase_74 | RE | - |
testcase_75 | RE | - |
testcase_76 | RE | - |
testcase_77 | RE | - |
testcase_78 | RE | - |
testcase_79 | RE | - |
testcase_80 | RE | - |
testcase_81 | RE | - |
testcase_82 | AC | 231 ms
7,296 KB |
testcase_83 | AC | 229 ms
7,296 KB |
testcase_84 | AC | 224 ms
7,296 KB |
testcase_85 | AC | 226 ms
7,296 KB |
testcase_86 | AC | 198 ms
7,168 KB |
testcase_87 | RE | - |
testcase_88 | RE | - |
testcase_89 | RE | - |
testcase_90 | RE | - |
testcase_91 | RE | - |
testcase_92 | RE | - |
testcase_93 | RE | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <set> #include <stack> #include <queue> #include <map> #include <algorithm> #include <iomanip> #include <math.h> using namespace std; using ll = long long; using pll = pair<ll, ll>; using vl = vector<ll>; using vll = vector<vl>; #define REP(i,n) for(int i=0; i<(int)(n); i++) #define REPR(i,n) for(int i=n-1; i>=(int)(0); i--) #define FOR(i,a,b) for(int i=(int)(a); i<(int)(b); i++) #define FORR(i,a,b) for(int i=(int)(b)-1; i>=(int)(a); i--) #define CHMIN(a,b) (a)=min((a),(b)) #define CHMAX(a,b) (a)=max((a),(b)) #define ALL(v) (v).begin(),(v).end() //**関数リスト**// int ctoi(char c) { switch (c) { case '0': return 0; case '1': return 1; case '2': return 2; case '3': return 3; case '4': return 4; case '5': return 5; case '6': return 6; case '7': return 7; case '8': return 8; case '9': return 9; default: return 0; } } bool pairCompare(const pll firstElof, pll secondElof) { return firstElof.second < secondElof.second; } ll nod(ll F) { ll keta = 1; while (F / 10 > 0) { keta++; F /= 10; } return keta; } ll gcd(ll x, ll y) { ll r; if (x < y) { swap(x, y); } while (y > 0) { r = x % y; x = y; y = r; } return x; } ll lcm(ll x, ll y) { return x * y / gcd(x, y); } ll isPrime(ll x) { ll i; if (x < 2) { return 0; } else if (x == 2) { return 1; } else if (x % 2 == 0) { return 0; } else { for (i = 3; i * i <= x; i += 2) { if (x % 1 == 0) { return 0; } } return 1; } } void eratos(vl isPrime) { //(注)isPrimeのサイズはN+1にする!実際にはmain内に配置して使用 ll i, j; REP(i, isPrime.size()) { isPrime[i] = 1; } isPrime[0] = 0; isPrime[1] = 0; for (i = 2; i * i <= isPrime.size() - 1; i++) { if (isPrime[i] == 1) { j = i * 2; while (j <= isPrime.size() - 1) { isPrime[j] = 0; j = j + i; } } } } ll modinv(ll a, ll m) { ll b = m, u = 1, v = 0; while (b) { ll t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= m; if (u < 0) u += m; return u; } void bitSearch(ll n) { //実際にはコピーして中身を改変して使う ll i; REP(i, pow(2, n)) { ll p = i; REP(i, n) { cout << p % 2; p /= 2; } cout << endl; } } void bfs(ll now) { //中身は毎回書き換えて使用 queue<ll> Q; Q.push(now); ll u; while (!Q.empty()) { u = Q.front(); Q.pop(); //ll v=; //Q.push(v); } } //**定義場所**// ll i, j, k, l, m, n; ll N, M, K, H, W; ll MOD = 1000000007; ll ans = 0; //***********// int main() { cin >> N; vl A(N); ll Q; vl P(N); vl L(N); vl R(N); vl power(N+1); power[0] = 1; for (i = 0; i < N; i++) { cin >> A[i]; power[i+1] = power[i] * A[i]; } cin >> Q; for (i = 0; i < Q; i++) { cin >> P[i] >> L[i] >> R[i]; if ((power[R[i]] / power[L[i] - 1]) % P[i] == 0) { cout << "Yes" << endl; } else { cout << "NO" << endl; } } }