結果

問題 No.164 ちっちゃくないよ!!
ユーザー lloyzlloyz
提出日時 2023-06-08 21:25:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 73,664 KB
最終ジャッジ日時 2024-06-10 00:34:54
合計ジャッジ時間 1,457 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 49 ms
52,352 KB
testcase_03 AC 42 ms
52,504 KB
testcase_04 AC 43 ms
53,440 KB
testcase_05 WA -
testcase_06 AC 66 ms
73,664 KB
testcase_07 AC 57 ms
68,896 KB
testcase_08 AC 63 ms
73,292 KB
testcase_09 AC 62 ms
72,968 KB
testcase_10 AC 34 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 10**18
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