結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | chocopuu |
提出日時 | 2019-10-25 22:03:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,012 bytes |
コンパイル時間 | 1,644 ms |
コンパイル使用メモリ | 170,380 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-07 03:30:04 |
合計ジャッジ時間 | 2,286 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define REP(i,n) for(int i = 0;i < (int)(n);i++) #define RREP(i,n) for(int i = (int)n-1;i >= 0;i--) #define FOR(i,s,n) for(int i = s;i < (int)n;i++) #define RFOR(i,s,n) for(int i = (int)n-1;i >= s;i--) #define ALL(a) a.begin(),a.end() template<class T>inline bool CHMAX(T&a,T b){if(a<b){a = b;return true;}return false;} template<class T>inline bool CHMIN(T&a,T b){if(a>b){a = b;return true;}return false;} constexpr long long INF = 1e18; signed main(){ int Q; cin>>Q; vector<int>ans; while(Q--){ int A,B,C; cin>>A>>B>>C; if(C==1){ ans.push_back(-1); continue; } int t = 0; vector<int>m; while(A){ m.push_back(A%C); A/=C; } reverse(ALL(m)); REP(i,m.size()){ if(i+1==m.size()){ if(i)t++; if(m[i])t++; }else if(m[i]&&m[i+1]&&m[i]*C+m[i+1]<=2*(C-1)){ if(i)t++; i++; t+=2; }else{ if(i)t++; if(m[i])t++; } } ans.push_back(t*B); } for(auto &e:ans)cout << e << endl; }