結果
問題 | No.2385 Parse Integer with Radix |
ユーザー | wtz2333 |
提出日時 | 2023-07-21 21:39:23 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 908 bytes |
コンパイル時間 | 2,294 ms |
コンパイル使用メモリ | 211,044 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 23:02:32 |
合計ジャッジ時間 | 2,867 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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(); } }