結果
問題 | No.2385 Parse Integer with Radix |
ユーザー |
![]() |
提出日時 | 2023-07-31 10:01:20 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 724 bytes |
コンパイル時間 | 1,810 ms |
コンパイル使用メモリ | 192,464 KB |
最終ジャッジ日時 | 2025-02-15 21:09:06 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 11 |
ソースコード
#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";}}