結果
問題 | No.1862 Copy and Paste |
ユーザー | vjudge1 |
提出日時 | 2024-11-13 09:50:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,040 bytes |
コンパイル時間 | 2,339 ms |
コンパイル使用メモリ | 203,912 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-13 09:50:38 |
合計ジャッジ時間 | 3,555 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
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 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> #define il inline #define re register #define LL __int128 #define ll long long using namespace std; const int N=1e6+10; #define gc() getchar() il int rd(){ int x=0,f=1; char ch=gc(); while(!isdigit(ch)){if(ch=='-')f=-1;ch=gc();} while(isdigit(ch))x=(x<<3)+(x<<1)+(ch^48),ch=gc(); return x*f; } il void print(LL x){ if(x>9)print(x/10); putchar(x%10+'0'); } ll n,x,y; int f[65]; void Main(){ cin>>x>>y>>n; LL Ans=x+(LL)n*y; // print(Ans);puts(""); ll p=sqrt(n),q=p; if(p*q<n){ ++q; if(p*q<n)++p; } Ans=min(Ans,(LL)max(0ll,p-2+q-2)*y+2*(x+y)); for(int i=3; (1ll<<i)<=n; ++i){//????copy ll s=1ll<<i; LL ans=(LL)i*(x+y); int head=0; for(int j=1; j<=i; ++j)f[j]=2; while(s<n){ ++head;if(head>i)head=1; s=s/f[head]*(f[head]+1); ++f[head];ans+=y; if(ans>Ans)break; } // cout<<i<<endl; Ans=min(Ans,ans); } print(Ans); } /* 1000000000000000000 1 1 */ signed main(){ // freopen("dice.in","r",stdin); // freopen("dice.out","w",stdout); int T=1; while(T--)Main(); return 0; }