結果
| 問題 |
No.915 Plus Or Multiple Operation
|
| コンテスト | |
| ユーザー |
LayCurse
|
| 提出日時 | 2019-11-02 11:35:56 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 1,942 bytes |
| コンパイル時間 | 2,806 ms |
| コンパイル使用メモリ | 210,404 KB |
| 最終ジャッジ日時 | 2025-01-08 02:16:02 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#pragma GCC optimize ("Ofast")
#include<bits/stdc++.h>
using namespace std;
inline void rd(int &x){
int k;
int m=0;
x=0;
for(;;){
k = getchar_unlocked();
if(k=='-'){
m=1;
break;
}
if('0'<=k&&k<='9'){
x=k-'0';
break;
}
}
for(;;){
k = getchar_unlocked();
if(k<'0'||k>'9'){
break;
}
x=x*10+k-'0';
}
if(m){
x=-x;
}
}
inline int rd_int(void){
int x;
rd(x);
return x;
}
inline void wt_L(char a){
putchar_unlocked(a);
}
inline void wt_L(int x){
int s=0;
int m=0;
char f[10];
if(x<0){
m=1;
x=-x;
}
while(x){
f[s++]=x%10;
x/=10;
}
if(!s){
f[s++]=0;
}
if(m){
putchar_unlocked('-');
}
while(s--){
putchar_unlocked(f[s]+'0');
}
}
inline void wt_L(long long x){
int s=0;
int m=0;
char f[20];
if(x<0){
m=1;
x=-x;
}
while(x){
f[s++]=x%10;
x/=10;
}
if(!s){
f[s++]=0;
}
if(m){
putchar_unlocked('-');
}
while(s--){
putchar_unlocked(f[s]+'0');
}
}
int main(){
int Lj4PdHRW;
int A;
int B;
int C;
long long res;
int KL2GvlyY = rd_int();
for(Lj4PdHRW=(0);Lj4PdHRW<(KL2GvlyY);Lj4PdHRW++){
rd(A);
rd(B);
rd(C);
if(C==1){
wt_L(-1);
wt_L('\n');
continue;
}
res = 0;
for(;;){
if(C <= A && A <= 2*(C-1)){
res += 2*B;
break;
}
if(A%C){
res += B;
A -= (A%C);
}
if(!A){
break;
}
A /= C;
res += B;
}
wt_L(res);
wt_L('\n');
}
return 0;
}
// cLay varsion 20191102-1
// --- original code ---
// {
// int A, B, C;
// ll res;
// REP(rd_int()){
// rd(A,B,C);
// if(C==1) wt(-1), continue;
// res = 0;
// for(;;){
// if(C <= A <= 2(C-1)) res += 2B, break;
// if(A%C) res += B, A -= (A%C);
// if(!A) break;
// A /= C; res += B;
// }
// wt(res);
// }
// }
LayCurse