Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168006 | B班 李文乐 | 确定进制 | C++ | 解答错误 | 75 | 1 MS | 252 KB | 599 | 2024-08-19 21:47:18 |
#include <iostream> using namespace std; int v(int num, int base) { int dec = 0; int p = 1; while (num > 0) { dec += (num % 10) * p; num /= 10; p *= base; } return dec; } int findB(int a, int b, int c) { for (int base = 2; base <= 16; base++) { int ad = v(a, base); int bd = v(b, base); int cd = v(c, base); if (ad * bd == cd) { return base; } } return 0; } int main() { int p, q, r; cin >> p >> q >> r; cout << findB(p, q, r) << endl; return 0; }