結果

問題 No.164 ちっちゃくないよ!!
ユーザー lloyzlloyz
提出日時 2023-06-08 21:26:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 72,748 KB
最終ジャッジ日時 2024-06-10 00:35:05
合計ジャッジ時間 1,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,292 KB
testcase_01 AC 36 ms
53,576 KB
testcase_02 AC 37 ms
52,664 KB
testcase_03 AC 36 ms
52,464 KB
testcase_04 AC 37 ms
52,780 KB
testcase_05 AC 59 ms
68,100 KB
testcase_06 AC 72 ms
72,380 KB
testcase_07 AC 59 ms
68,476 KB
testcase_08 AC 71 ms
71,680 KB
testcase_09 AC 72 ms
72,748 KB
testcase_10 AC 40 ms
54,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = [list(input()) for _ in range(n)]

ans = 1 << 63
for i in range(n):
    res = 0
    m = len(L[i])
    max_ = '0'
    for j in range(m):
        if L[i][j].isdigit():
            if max_.isdigit():
                max_ = max(max_, L[i][j])
        else:
            if max_.isdigit():
                max_ = L[i][j]
            else:
                max_ = max(max_, L[i][j])
    if max_.isdigit():
        d = int(max_) + 1
    else:
        d = ord(max_) - ord('A') + 11
    for j in range(m):
        if L[i][j].isdigit():
            res += pow(d, m - j - 1) * int(L[i][j])
        else:
            res += pow(d, m - j - 1) * (ord(L[i][j]) - ord('A') + 10)
    ans = min(ans, res)
print(ans)
0