結果

問題 No.2385 Parse Integer with Radix
ユーザー wtz2333wtz2333
提出日時 2023-07-21 21:39:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 210,128 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-21 21:34:32
合計ジャッジ時間 2,843 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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();
    }
}
0