結果
問題 | No.937 Ultra Sword |
ユーザー | otamay6 |
提出日時 | 2019-11-26 09:57:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 925 bytes |
コンパイル時間 | 1,782 ms |
コンパイル使用メモリ | 170,688 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-21 02:12:47 |
合計ジャッジ時間 | 5,779 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 161 ms
5,248 KB |
testcase_06 | AC | 92 ms
5,248 KB |
testcase_07 | AC | 102 ms
5,248 KB |
testcase_08 | AC | 46 ms
5,248 KB |
testcase_09 | AC | 35 ms
5,248 KB |
testcase_10 | AC | 113 ms
5,248 KB |
testcase_11 | AC | 12 ms
5,248 KB |
testcase_12 | AC | 53 ms
5,248 KB |
testcase_13 | AC | 50 ms
5,248 KB |
testcase_14 | AC | 58 ms
5,248 KB |
testcase_15 | AC | 44 ms
5,248 KB |
testcase_16 | AC | 3 ms
5,248 KB |
testcase_17 | AC | 6 ms
5,248 KB |
testcase_18 | AC | 48 ms
5,248 KB |
testcase_19 | AC | 29 ms
5,248 KB |
testcase_20 | AC | 25 ms
5,248 KB |
testcase_21 | AC | 120 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 145 ms
5,248 KB |
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 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
ソースコード
#include"bits/stdc++.h" #define _overload3(_1,_2,_3,name,...) name #define _rep(i,n) repi(i,0,n) #define repi(i,a,b) for(int i=(a);i<(b);++i) #define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__) #define All(x) (x).begin(),(x).end() #define rAll(x) (x).rbegin(),(x).rend() using namespace std; using ll = long long; int gcd(int x,int y){return y?gcd(y,x%y):x;} int main(){ int N;cin>>N; int M=0, G=0; ll S=0; vector<int> A(N); rep(i,N){ cin>>A[i]; M=max(M, A[i]); G=gcd(G, A[i]); S += A[i]; } vector<ll> mi(M+1, 0); rep(i,N){ for(int j=1;j*j<=A[i];++j){ if(A[i]%j==0){ mi[j] += A[i] - A[i]/j; if(j*j!=A[i]){ mi[A[i]/j] += A[i]-j; } } } } ll X=S; rep(i,2,M+1) if(i%G==0){ X = min(X, S-mi[i]); } cout<<X<<endl; }