結果
問題 | No.2385 Parse Integer with Radix |
ユーザー | hiroshi tamura |
提出日時 | 2023-07-21 21:33:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,334 bytes |
コンパイル時間 | 1,823 ms |
コンパイル使用メモリ | 127,788 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 22:52:27 |
合計ジャッジ時間 | 2,468 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
#pragma GCC target("avx,avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #define _USE_MATH_DEFINES #include <iostream> #include <string> #include <vector> #include <map> #include <set> #include <list> #include <queue> #include <unordered_map> #include <unordered_set> #include <algorithm> #include <functional> #include <climits> #include <cmath> #include <utility> #include <iomanip> #include <chrono> #include <random> #include <memory> #include <cstdlib> #include <cstring> #include <cmath> //#include <boost/multiprecision/cpp_int.hpp> #include <memory> using namespace std; using ll = long long int; //// 任意長整数型 //namespace mp = boost::multiprecision; //using Bint = mp::cpp_int; int main() { //input int Q; cin >> Q; for (int i = 0; i < Q; ++i) { string S; cin >> S; ll ans = 0; int offset = 0; int raddix = 0; if (S[0] == '0' && S[1] == 'b') { offset = 2; raddix = 2; } else if (S[0] == '0' && S[1] == 'o') { offset = 2; raddix = 8; } else if (S[0] == '0' && S[1] == 'x') { offset = 2; raddix = 16; } else { offset = 0; raddix = 10; } for (int j = offset; j < S.size(); ++j) { ll digit = S[j] <= '9' ? S[j] - '0' : S[j] - 'a' + 10; ans = ans * raddix + digit; } //ans cout << ans << endl; } return 0; }