結果
問題 | No.2385 Parse Integer with Radix |
ユーザー | pitP |
提出日時 | 2023-07-21 21:32:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 380 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 82,356 KB |
実行使用メモリ | 61,056 KB |
最終ジャッジ日時 | 2024-09-21 22:51:25 |
合計ジャッジ時間 | 1,371 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 11 |
ソースコード
for _ in range(int(input())): S = input() num = -1 d = {} for i in range(10): d[str(i)] = i for i in range(6): d[chr(ord('a') + i)] = i + 10 # 2 if S[0:2] == "0b": num = 2 S = S[2:] elif S[0:2] == "0o": num = 8 S = S[2:] elif S[0:2] == "0x": num = 16 S = S[2:] else : num = 10 ans = 0 for i in range(len(S)): ans *= num ans += d[S[i]] print(ans)