結果
問題 | No.2385 Parse Integer with Radix |
ユーザー | RootMirzayanov |
提出日時 | 2023-07-21 21:34:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 863 bytes |
コンパイル時間 | 1,519 ms |
コンパイル使用メモリ | 167,052 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 22:53:43 |
合計ジャッジ時間 | 2,013 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 |
ソースコード
#include <bits/stdc++.h> int T; std::string s; long long work16(std::string s){ int n = s.size(); long long res = 0; for(int i = 2;i < n;i++) res = 16 * res + (s[i] >= 'a' ? 10 + s[i] - 'a' : s[i] - '0'); return res; } long long work8(std::string s){ int n = s.size(); long long res = 0; for(int i = 2;i < n;i++) res = 8 * res + (s[i] - '0'); return res; } long long work2(std::string s){ int n = s.size(); long long res = 0; for(int i = 2;i < n;i++) res = 2 * res + (s[i] - '0'); return res; } int main(){ scanf("%d", &T); while(T--){ std::cin >> s; if(s[0] != '0' || s == "0"){ printf("%s\n", s.c_str()); continue; } if(s[1] == 'x'){ printf("%lld\n", work16(s)); continue; } if(s[1] == 'o'){ printf("%lld\n", work8(s)); continue; } if(s[1] == 'b'){ printf("%lld\n", work2(s)); continue; } } return 0; }