結果
問題 | No.469 区間加算と一致検索の問題 |
ユーザー | paruki |
提出日時 | 2016-12-19 01:16:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,229 bytes |
コンパイル時間 | 2,008 ms |
コンパイル使用メモリ | 177,348 KB |
実行使用メモリ | 15,784 KB |
最終ジャッジ日時 | 2024-05-08 06:51:57 |
合計ジャッジ時間 | 5,932 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 6 ms
5,376 KB |
testcase_07 | AC | 6 ms
5,376 KB |
testcase_08 | AC | 7 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 6 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 7 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 7 ms
5,376 KB |
testcase_17 | AC | 6 ms
5,376 KB |
testcase_18 | AC | 7 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 7 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 34 ms
5,632 KB |
testcase_24 | AC | 34 ms
5,632 KB |
testcase_25 | AC | 34 ms
5,632 KB |
testcase_26 | AC | 34 ms
5,632 KB |
testcase_27 | AC | 33 ms
5,632 KB |
testcase_28 | AC | 34 ms
5,632 KB |
testcase_29 | AC | 35 ms
5,632 KB |
testcase_30 | AC | 34 ms
5,760 KB |
testcase_31 | WA | - |
testcase_32 | AC | 34 ms
5,632 KB |
testcase_33 | AC | 97 ms
15,784 KB |
testcase_34 | WA | - |
testcase_35 | AC | 102 ms
15,780 KB |
testcase_36 | AC | 105 ms
15,780 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 92 ms
13,864 KB |
testcase_40 | AC | 89 ms
13,736 KB |
testcase_41 | AC | 92 ms
13,736 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 93 ms
13,864 KB |
testcase_45 | AC | 90 ms
13,864 KB |
testcase_46 | WA | - |
testcase_47 | AC | 92 ms
13,740 KB |
testcase_48 | AC | 2 ms
5,376 KB |
testcase_49 | AC | 2 ms
5,376 KB |
testcase_50 | AC | 91 ms
13,860 KB |
testcase_51 | AC | 91 ms
13,860 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define mt make_tuple #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; const int C = 31, C2 = 29, P = 1000000007, P2 = 1000000009; int main(){ ios::sync_with_stdio(false); cin.tie(0); int N, Q; cin >> N >> Q; vll c1(N+1); c1[1] = 1; rep(i, N - 1) { c1[i+2] = c1[i+1] * C%P; } rep(i, N) { (c1[i + 1] += c1[i]) %= P; } unordered_map<ll, int> aa; ll x = 0; rep(i, Q) { if(!aa.count(x)) { aa[x] = i; } char c; cin >> c; if(c == '!') { int l, r, y; cin >> l >> r >> y; ll z1 = (c1[r] - c1[l])*y; (x += z1)%=P; if(x < 0)x += P; } else { cout << aa[x] << endl; } } }