結果

問題 No.1233 割り切れない気持ち
ユーザー FF256grhyFF256grhy
提出日時 2020-09-18 23:14:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 3,153 ms
コード長 4,762 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 203,904 KB
実行使用メモリ 7,248 KB
最終ジャッジ日時 2023-09-04 21:54:16
合計ジャッジ時間 5,815 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,456 KB
testcase_01 AC 10 ms
6,300 KB
testcase_02 AC 10 ms
6,236 KB
testcase_03 AC 10 ms
6,168 KB
testcase_04 AC 10 ms
6,208 KB
testcase_05 AC 10 ms
6,196 KB
testcase_06 AC 10 ms
6,320 KB
testcase_07 AC 23 ms
6,476 KB
testcase_08 AC 33 ms
6,528 KB
testcase_09 AC 54 ms
6,780 KB
testcase_10 AC 57 ms
6,764 KB
testcase_11 AC 22 ms
6,160 KB
testcase_12 AC 65 ms
6,952 KB
testcase_13 AC 64 ms
7,028 KB
testcase_14 AC 65 ms
7,108 KB
testcase_15 AC 65 ms
7,044 KB
testcase_16 AC 64 ms
7,000 KB
testcase_17 AC 37 ms
7,004 KB
testcase_18 AC 64 ms
7,104 KB
testcase_19 AC 67 ms
7,012 KB
testcase_20 AC 37 ms
7,008 KB
testcase_21 AC 48 ms
7,116 KB
testcase_22 AC 49 ms
6,960 KB
testcase_23 AC 48 ms
7,004 KB
testcase_24 AC 48 ms
7,120 KB
testcase_25 AC 48 ms
6,964 KB
testcase_26 AC 48 ms
7,008 KB
testcase_27 AC 56 ms
7,044 KB
testcase_28 AC 56 ms
7,008 KB
testcase_29 AC 57 ms
6,956 KB
testcase_30 AC 56 ms
7,028 KB
testcase_31 AC 56 ms
6,996 KB
testcase_32 AC 56 ms
7,024 KB
testcase_33 AC 56 ms
6,956 KB
testcase_34 AC 55 ms
7,248 KB
testcase_35 AC 56 ms
7,008 KB
testcase_36 AC 56 ms
6,956 KB
testcase_37 AC 11 ms
6,220 KB
testcase_38 AC 37 ms
6,964 KB
testcase_39 AC 50 ms
6,944 KB
testcase_40 AC 50 ms
7,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using LL = long long int;
#define incII(i, l, r) for(LL i = (l)    ; i <= (r); i++)
#define incIX(i, l, r) for(LL i = (l)    ; i <  (r); i++)
#define incXI(i, l, r) for(LL i = (l) + 1; i <= (r); i++)
#define incXX(i, l, r) for(LL i = (l) + 1; i <  (r); i++)
#define decII(i, l, r) for(LL i = (r)    ; i >= (l); i--)
#define decIX(i, l, r) for(LL i = (r) - 1; i >= (l); i--)
#define decXI(i, l, r) for(LL i = (r)    ; i >  (l); i--)
#define decXX(i, l, r) for(LL i = (r) - 1; i >  (l); i--)
#define inc(i, n)  incIX(i, 0, n)
#define dec(i, n)  decIX(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec1(i, n) decII(i, 1, n)
auto inII = [](auto x, auto l, auto r) { return (l <= x && x <= r); };
auto inIX = [](auto x, auto l, auto r) { return (l <= x && x <  r); };
auto inXI = [](auto x, auto l, auto r) { return (l <  x && x <= r); };
auto inXX = [](auto x, auto l, auto r) { return (l <  x && x <  r); };
auto setmin   = [](auto & a, auto b) { return (b <  a ? a = b, true : false); };
auto setmax   = [](auto & a, auto b) { return (b >  a ? a = b, true : false); };
auto setmineq = [](auto & a, auto b) { return (b <= a ? a = b, true : false); };
auto setmaxeq = [](auto & a, auto b) { return (b >= a ? a = b, true : false); };
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define MT make_tuple
#define FI first
#define SE second
#define FR front()
#define BA back()
#define ALL(c) c.begin(), c.end()
#define RALL(c) c.rbegin(), c.rend()
#define RV(c) reverse(ALL(c))
#define SC static_cast
#define SI(c) SC<int>(c.size())
#define SL(c) SC<LL >(c.size())
#define RF(e, c) for(auto & e: c)
#define SF(c, ...) for(auto & [__VA_ARGS__]: c)
#define until(e) while(! (e))
#define if_not(e) if(! (e))
#define ef else if
#define UR assert(false)
auto * IS = & cin;
auto * OS = & cout;
array<string, 3> SEQ = { "", " ", "" };
// input
template<typename T> T in() { T a; (* IS) >> a; return a; }
// input: tuple
template<typename U, int I> void tin_([[maybe_unused]] U & t) { }
template<typename U, int I, typename A, typename ... B> void tin_(U & t) { (* IS) >> get<I>(t); tin_<U, I + 1, B ...>(t); }
template<typename ... T> auto tin() { tuple<T ...> t; tin_<tuple<T ...>, 0, T ...>(t); return t; }
// input: array
template<typename T, int N> auto ain() { array<T, N> a; inc(i, N) { (* IS) >> a[i]; } return a; }
// input: multi-dimensional vector
template<typename T> T vin() { T v; (* IS) >> v; return v; }
template<typename T, typename N, typename ... M> auto vin(N n, M ... m) {
	vector<decltype(vin<T, M ...>(m ...))> v(n); inc(i, n) { v[i] = vin<T, M ...>(m ...); } return v;
}
// input: multi-column (tuple<vector>)
template<typename U, int I> void colin_([[maybe_unused]] U & t) { }
template<typename U, int I, typename A, typename ... B> void colin_(U & t) {
	get<I>(t).PB(in<A>()); colin_<U, I + 1, B ...>(t);
}
template<typename ... T> auto colin(int n) {
	tuple<vector<T> ...> t; inc(i, n) { colin_<tuple<vector<T> ...>, 0, T ...>(t); } return t;
}
// output
void out_([[maybe_unused]] string s) { }
template<typename A> void out_([[maybe_unused]] string s, A && a) { (* OS) << a; }
template<typename A, typename ... B> void out_(string s, A && a, B && ... b) { (* OS) << a << s; out_(s, b ...); }
auto outF = [](auto x, auto y, auto z, auto ... a) { (* OS) << x; out_(y, a ...); (* OS) << z << flush; };
auto out  = [](auto ... a) { outF("", " " , "\n", a ...); };
auto outS = [](auto ... a) { outF("", " " , " " , a ...); };
auto outL = [](auto ... a) { outF("", "\n", "\n", a ...); };
auto outN = [](auto ... a) { outF("", ""  , ""  , a ...); };
// output: multi-dimensional vector
template<typename T> ostream & operator<<(ostream & os, vector<T> const & v) {
	os << SEQ[0]; inc(i, SI(v)) { os << (i == 0 ? "" : SEQ[1]) << v[i]; } return (os << SEQ[2]);
}
template<typename T> void vout_(T && v) { (* OS) << v; }
template<typename T, typename A, typename ... B> void vout_(T && v, A a, B ... b) {
	inc(i, SI(v)) { (* OS) << (i == 0 ? "" : a); vout_(v[i], b ...); }
}
template<typename T, typename A, typename ... B> void vout (T && v, A a, B ... b) { vout_(v, a, b ...); (* OS) << a << flush; }
template<typename T, typename A, typename ... B> void voutN(T && v, A a, B ... b) { vout_(v, a, b ...); (* OS)      << flush; }

// ---- ----

const LL M = 200'000;
int main() {
	auto n = in<int>();
	auto a = vin<int>(n);
	
	/*
	LL x = 0;
	inc(i, n) {
	inc(j, n) {
		x += a[i] % a[j];
	}
	}
	out(x);
	*/
	
	vector<LL> b(M + 1), s(M + 2);
	LL ans = 0;
	RF(e, a) { b[e]++; ans += e; }
	inc(i, M + 1) { s[i + 1] = s[i] + b[i]; }
	ans *= n;
	inc1(i, M) {
	incII(k, 0, M) {
		LL L = i * k, R = min(L + i, M + 1);
		if(L > M) { break; }
		ans -= b[i] * (s[R] - s[L]) * L;
	}
	}
	out(ans);
}
0