結果
問題 | No.1580 I like Logarithm! |
ユーザー | maguro |
提出日時 | 2020-08-29 20:48:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,517 bytes |
コンパイル時間 | 2,163 ms |
コンパイル使用メモリ | 203,920 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 04:26:43 |
合計ジャッジ時間 | 7,654 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 137 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 74 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 144 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; constexpr int Inf = 2000000010; constexpr ll INF= 2000000000000000000; constexpr ll MOD = 1000000007; const double PI = 3.1415926535897; typedef pair<ll,ll> P; typedef pair<int,P> PP; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } ll mod(ll val, ll M) { ll res = val % M; if(res < 0) { res += M; } return res; } template<typename T> T RS(T N, T P, T M){ if(P == 0) { return 1; } if(P < 0) { return 0; } if(P % 2 == 0){ ll t = RS(N, P/2, M); if(M == -1) return t * t; return t * t % M; } if(M == -1) { return N * RS(N,P - 1,M); } return N * RS(N, P-1, M) % M; } int main() { int A; cin >> A; string S; cin >> S; vector<ll> vec(S.size()); for(int i = 0;i < S.size();i++) { vec.at(i) = S.at(i) - '0'; } reverse(vec.begin(),vec.end()); ll ret = 0; for(ll i = 0;i < S.size() - 1;i++) { ret += i * mod(RS(3ll,i + 1,MOD) - RS(3ll,i,MOD),MOD); ret %= MOD; } vec.at(S.size() - 1)--; ll cnt = S.size() - 1; for(ll i = 0;i < S.size();i++) { ret += cnt * vec.at(i) * RS(3ll,i,MOD); ret %= MOD; } ret += cnt; ret %= MOD; cout << ret << endl; }