結果
問題 | No.2066 Simple Math ! |
ユーザー | gs15120 |
提出日時 | 2022-09-14 12:40:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 394 ms / 2,000 ms |
コード長 | 1,783 bytes |
コンパイル時間 | 3,095 ms |
コンパイル使用メモリ | 188,120 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 17:54:10 |
合計ジャッジ時間 | 11,182 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 21 ms
5,376 KB |
testcase_02 | AC | 35 ms
5,376 KB |
testcase_03 | AC | 25 ms
5,376 KB |
testcase_04 | AC | 382 ms
5,376 KB |
testcase_05 | AC | 383 ms
5,376 KB |
testcase_06 | AC | 381 ms
5,376 KB |
testcase_07 | AC | 381 ms
5,376 KB |
testcase_08 | AC | 382 ms
5,376 KB |
testcase_09 | AC | 392 ms
5,376 KB |
testcase_10 | AC | 392 ms
5,376 KB |
testcase_11 | AC | 391 ms
5,376 KB |
testcase_12 | AC | 393 ms
5,376 KB |
testcase_13 | AC | 391 ms
5,376 KB |
testcase_14 | AC | 393 ms
5,376 KB |
testcase_15 | AC | 393 ms
5,376 KB |
testcase_16 | AC | 394 ms
5,376 KB |
testcase_17 | AC | 394 ms
5,376 KB |
testcase_18 | AC | 392 ms
5,376 KB |
testcase_19 | AC | 152 ms
5,376 KB |
testcase_20 | AC | 152 ms
5,376 KB |
testcase_21 | AC | 151 ms
5,376 KB |
testcase_22 | AC | 152 ms
5,376 KB |
testcase_23 | AC | 152 ms
5,376 KB |
testcase_24 | AC | 180 ms
5,376 KB |
testcase_25 | AC | 180 ms
5,376 KB |
testcase_26 | AC | 180 ms
5,376 KB |
testcase_27 | AC | 180 ms
5,376 KB |
testcase_28 | AC | 180 ms
5,376 KB |
testcase_29 | AC | 70 ms
5,376 KB |
testcase_30 | AC | 33 ms
5,376 KB |
testcase_31 | AC | 28 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define ll long long #define lll long long//__int128 #define pii pair<int,int> //#define f first #define s second # define pi 3.14159265358979323846 #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; struct chash_key { ll operator()(pii x) const { return (ll)x.first*1000000000 + x.second; } }; //gp_hash_table<pii,int,chash_key> hs[2],p[2]; //gp_hash_table<ll,int> dp; /* ios_base::sync_with_stdio(false); cin.tie(0),cout.tie(0); cout << fixed; cout.precision(3); cout << x << '\n'; */ struct P { int x,y,z; bool operator <(const P &a)const { return y>a.y; }; }; int a,b,c; const ll mod=998244353; //sum (ai+b)/c for i=0 to n long long FloorSumAP(long long a, long long b, long long c, long long n){ //cout<<a<<b<<c<<n<<"\n"; if(!a) return (b / c) * (n + 1); if(a >= c or b >= c) return ( ( n * (n + 1) ) / 2) * (a / c) + (n + 1) * (b / c) + FloorSumAP(a % c, b % c, c, n); long long m = (a * n + b) / c; return m * n - FloorSumAP(c, c - b - 1, a, m - 1); } int main() { ios_base::sync_with_stdio(false); cin.tie(0),cout.tie(0); int ttt=100; cin>>ttt; a=3,b=4; for(int tt=1;tt<=ttt;tt++) { c=tt; cin>>a>>b>>c; ll x=1,y=(ll)a*c; int g=__gcd(a,b); ll L=(ll)a*b/g; for(;x<y;) { ll h=(x+y)/2; ll d=0; if(h<L) { d=FloorSumAP(a,h%a+b,b,h/a)-1; } else { d=FloorSumAP(a,h-L+a+b,b,L/a-1)-1; } if(d<c) x=h+1; else y=h; } cout<<x<<"\n"; } //cout<<FloorSumAP(3,4%3+4,4,4/3)<<" "<<FloorSumAP(3,5%3+4,4,5/3); }