結果

問題 No.164 ちっちゃくないよ!!
ユーザー rlangevinrlangevin
提出日時 2023-01-08 21:53:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-05-09 12:35:24
合計ジャッジ時間 2,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
51,840 KB
testcase_01 AC 48 ms
51,840 KB
testcase_02 AC 48 ms
51,200 KB
testcase_03 AC 50 ms
50,944 KB
testcase_04 AC 50 ms
51,840 KB
testcase_05 WA -
testcase_06 AC 89 ms
69,760 KB
testcase_07 AC 87 ms
66,560 KB
testcase_08 AC 89 ms
69,120 KB
testcase_09 AC 87 ms
70,272 KB
testcase_10 AC 48 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
    if 0 <= ord(x) - ord("0") <= 9:
        return ord(x) - ord("0")
    return ord(x) - ord("A") + 10

N = int(input())
ans = 10 ** 18
for _ in range(N):
    V = list(input())
    V = list(map(f, V))
    maxv = max(V) + 1
    V.reverse()
    c = 1
    val = 0
    for v in V:
        val += c * v
        c *= maxv
    ans = min(ans, val)
print(ans)
0