結果

問題 No.164 ちっちゃくないよ!!
ユーザー nbisconbisco
提出日時 2017-02-04 15:06:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-06 14:13:48
合計ジャッジ時間 1,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 39 ms
10,752 KB
testcase_06 AC 39 ms
10,624 KB
testcase_07 AC 35 ms
10,624 KB
testcase_08 AC 37 ms
10,624 KB
testcase_09 AC 36 ms
10,624 KB
testcase_10 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def convert(_s, base):
    ans = 0
    _s.reverse()
    for i, s in enumerate(_s):
        if s.isalpha():
            ans += base**i * (ord(s) - ord("A") + 10)
        else:
            ans += base**i * int(s)
    return ans

N = int(input())
nums = [input() for i in range(N)]

ans = 36**13
for i in nums:
    largest_char = sorted(i, reverse=True)[0]
    base = 10
    if largest_char.isalpha():
        base = ord(largest_char) - ord("A") + 11
    else:
        base = int(largest_char) + 1
    ans = min(ans, convert(list(i), base))
print(ans)
0