結果
問題 | No.2385 Parse Integer with Radix |
ユーザー | HIcoder |
提出日時 | 2023-07-21 21:54:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 964 bytes |
コンパイル時間 | 880 ms |
コンパイル使用メモリ | 87,800 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 23:25:23 |
合計ジャッジ時間 | 1,423 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<set> #include<map> #include<vector> #include<queue> #include<algorithm> #include<tuple> using namespace std; typedef long long ll; ll f(string s,int base){ int n=s.size(); ll res=0; for(int i=0;i<n;i++){ res*=base; if(base==16 && 'a'<=s[i] && s[i]<='f'){ res+=(int)(s[i]-'a'+10); }else{ res+=(int)(s[i]-'0'); } } return res; } int main(){ int Q; cin>>Q; vector<ll> output; for(int q=0;q<Q;q++){ string S; cin>>S; ll ans=0; string s=S.substr(0,2); if(s=="0b"){ ans=f(S.substr(2),2); }else if(s=="0o"){ ans=f(S.substr(2),8); }else if(s=="0x"){ ans=f(S.substr(2),16); }else{ ans=f(S,10); } output.push_back(ans); //cout<<ans<<endl; } for(ll v:output){ cout<<v<<endl; } }