結果

問題 No.2385 Parse Integer with Radix
ユーザー eve__fuyukieve__fuyuki
提出日時 2023-07-31 10:01:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 194,400 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-18 10:29:13
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 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
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
void fast_io() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
}

int main() {
    fast_io();
    int q;
    cin >> q;
    for (; q--;) {
        string s;
        cin >> s;
        if (s.size() < 3 || (s[1] - '0' >= 0) && (s[1] - '0' <= 9)) {
            cout << s << "\n";
            continue;
        }
        long long b = (s[1] == 'x' ? 16 : (s[1] == 'o' ? 8 : 2));
        long long ans = 0;
        for (int i = 2; i < s.size(); i++) {
            long long num = s[i] - '0';
            if (s[i] >= 'a' && s[i] <= 'f') {
                num = s[i] - 'a' + 10;
            }
            ans = b * ans + num;
        }
        cout << ans << "\n";
    }
}
0