結果

問題 No.1411 Hundreds of Conditions Sequences
ユーザー chocoruskchocorusk
提出日時 2021-02-26 22:05:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 2,001 bytes
コンパイル時間 3,667 ms
コンパイル使用メモリ 191,656 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-10-02 14:52:16
合計ジャッジ時間 19,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 4 ms
6,016 KB
testcase_02 AC 5 ms
5,888 KB
testcase_03 AC 4 ms
5,888 KB
testcase_04 AC 4 ms
5,888 KB
testcase_05 AC 4 ms
5,888 KB
testcase_06 AC 5 ms
5,888 KB
testcase_07 AC 4 ms
5,760 KB
testcase_08 AC 4 ms
5,760 KB
testcase_09 AC 3 ms
6,016 KB
testcase_10 AC 4 ms
5,888 KB
testcase_11 AC 4 ms
5,888 KB
testcase_12 AC 248 ms
17,664 KB
testcase_13 AC 179 ms
16,512 KB
testcase_14 AC 97 ms
14,720 KB
testcase_15 AC 179 ms
16,548 KB
testcase_16 AC 20 ms
9,856 KB
testcase_17 AC 171 ms
16,384 KB
testcase_18 AC 239 ms
17,536 KB
testcase_19 AC 258 ms
17,792 KB
testcase_20 AC 96 ms
14,848 KB
testcase_21 AC 286 ms
18,176 KB
testcase_22 AC 104 ms
14,976 KB
testcase_23 AC 237 ms
17,664 KB
testcase_24 AC 5 ms
6,272 KB
testcase_25 AC 251 ms
17,536 KB
testcase_26 AC 184 ms
16,384 KB
testcase_27 AC 99 ms
14,976 KB
testcase_28 AC 201 ms
17,024 KB
testcase_29 AC 34 ms
11,520 KB
testcase_30 AC 152 ms
16,000 KB
testcase_31 AC 146 ms
15,744 KB
testcase_32 AC 282 ms
18,304 KB
testcase_33 AC 270 ms
18,304 KB
testcase_34 AC 278 ms
18,176 KB
testcase_35 AC 273 ms
18,304 KB
testcase_36 AC 275 ms
18,304 KB
testcase_37 AC 271 ms
18,304 KB
testcase_38 AC 281 ms
18,304 KB
testcase_39 AC 280 ms
18,304 KB
testcase_40 AC 280 ms
18,304 KB
testcase_41 AC 278 ms
18,304 KB
testcase_42 AC 273 ms
18,304 KB
testcase_43 AC 278 ms
18,304 KB
testcase_44 AC 298 ms
18,432 KB
testcase_45 AC 275 ms
18,304 KB
testcase_46 AC 286 ms
18,432 KB
testcase_47 AC 282 ms
18,304 KB
testcase_48 AC 279 ms
18,304 KB
testcase_49 AC 277 ms
18,304 KB
testcase_50 AC 267 ms
18,304 KB
testcase_51 AC 272 ms
18,304 KB
testcase_52 AC 296 ms
13,696 KB
testcase_53 AC 287 ms
13,696 KB
testcase_54 AC 289 ms
13,568 KB
testcase_55 AC 291 ms
13,568 KB
testcase_56 AC 294 ms
13,568 KB
testcase_57 AC 288 ms
13,568 KB
testcase_58 AC 290 ms
13,440 KB
testcase_59 AC 292 ms
13,696 KB
testcase_60 AC 302 ms
13,696 KB
testcase_61 AC 296 ms
13,568 KB
testcase_62 AC 523 ms
9,344 KB
testcase_63 AC 381 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
vector<P> v[100010];
int emx[1000010];
int emx2[1000010];
int main()
{
    int n; cin>>n;
    int a[100010];
    for(int i=0; i<n; i++){
        cin>>a[i];
    }
    for(int i=0; i<n; i++){
        int x=a[i];
        for(int j=2; j*j<=x; j++){
            if(x%j==0){
                int e=0;
                while(x%j==0){
                    e++;
                    x/=j;
                }
                v[i].push_back({j, e});
                if(emx[j]<e){
                    emx2[j]=emx[j];
                    emx[j]=e;
                }else if(emx2[j]<e){
                    emx2[j]=e;
                }
            }
        }
        if(x>1){
            v[i].push_back({x, 1});
            if(emx[x]<1){
                emx2[x]=emx[x];
                emx[x]=1;
            }else if(emx2[x]<1){
                emx2[x]=1;
            }
        }
    }
    using mint=modint1000000007;
    mint tot=1;
    for(int i=0; i<n; i++) tot*=a[i];
    mint ans0=1;
    for(int i=2; i<1000000; i++){
        if(emx[i]){
            for(int j=0; j<emx[i]; j++) ans0*=i;
        }
    }
    for(int i=0; i<n; i++){
        mint ans=ans0;
        for(auto q:v[i]){
            int p=q.first, e=q.second;
            if(emx[p]==e){
                for(int j=0; j<emx[p]-emx2[p]; j++) ans/=mint(p);
            }
        }
        ans=tot/a[i]-ans;
        cout<<ans.val()<<endl;
    }
    return 0;
}
0