結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | soto800 |
提出日時 | 2019-10-25 22:43:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 579 bytes |
コンパイル時間 | 2,097 ms |
コンパイル使用メモリ | 159,736 KB |
実行使用メモリ | 814,592 KB |
最終ジャッジ日時 | 2024-11-07 03:36:37 |
合計ジャッジ時間 | 4,480 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define lli int #define REP(i,s,n) for(int i=s;i<n;i++) #define MOD 1000000007 #define NUM 2520 #define INF (1LL<<50) #define DEBUG 0 #define mp(a,b) make_pair(a,b) #define SORT(V) sort(V.begin(),V.end()) lli b,c; lli calc(lli a){ if(a<c)return b; if(a <= 2*(c-1))return 2*b; lli next = b; next += calc(a/c); if(a%c!=0)next += calc(a%c); return next; } void solve(){ lli a; cin>>a>>b>>c; /*逆からやるとよさそう*/ cout<<calc(a)<<endl; } signed main(){ lli q; cin>>q; REP(i,0,q)solve(); return 0; }