結果
| 問題 |
No.2385 Parse Integer with Radix
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-07-21 21:39:23 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 908 bytes |
| コンパイル時間 | 2,003 ms |
| コンパイル使用メモリ | 203,044 KB |
| 最終ジャッジ日時 | 2025-02-15 16:35:49 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 11 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
map<int,int> mp;
void solve(){
string s;
cin >> s;
ll base = 0;
//cout << s.substr(0,2) << "!!\n";
if(s.substr(0,2) == "0b"){
s = s.substr(2);
base = 2;
}else if(s.substr(0,2) == "0o"){
s = s.substr(2);
base = 8;
}else if(s.substr(0,2) == "0x"){
s = s.substr(2);
base = 16;
}else {
base = 10;
}
//cerr << s << "!\n";
ll ans = 0;
//reverse(s.begin(),s.end());
for(int i = 0;i < s.size();i ++){
ans = ans * base + mp[s[i]];
}
cout << ans << "\n";
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int T;
cin >> T;
for(int i = 0;i <= 9;i ++){
mp[char('0' + i)] = i;
}
for(char i = 'a';i <= 'f';i ++){
mp[i] = i - 'a' + 10;
}
while(T --){
solve();
}
}