結果

問題 No.164 ちっちゃくないよ!!
ユーザー roarisroaris
提出日時 2022-11-26 15:57:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,844 KB
最終ジャッジ日時 2024-10-02 22:26:49
合計ジャッジ時間 1,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 86 ms
76,844 KB
testcase_06 AC 84 ms
76,600 KB
testcase_07 AC 72 ms
74,368 KB
testcase_08 AC 82 ms
76,288 KB
testcase_09 AC 85 ms
76,344 KB
testcase_10 AC 40 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(c):
    if '0'<=c<='9':
        return int(c)
    else:
        return ord(c)-ord('A')+10

ans = float('inf')

for _ in range(int(input())):
    S = input()
    k = max(f(c) for c in S)+1
    v = 0
    
    for i, c in enumerate(S[::-1]):
        v += f(c)*pow(k, i)
    
    ans = min(ans, v)

print(ans)
0