結果

問題 No.164 ちっちゃくないよ!!
ユーザー yansi819yansi819
提出日時 2024-05-24 21:29:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 72,620 KB
最終ジャッジ日時 2024-05-24 21:29:14
合計ジャッジ時間 2,086 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,132 KB
testcase_01 AC 36 ms
52,076 KB
testcase_02 AC 37 ms
52,256 KB
testcase_03 AC 36 ms
53,552 KB
testcase_04 AC 36 ms
52,528 KB
testcase_05 AC 63 ms
72,620 KB
testcase_06 AC 56 ms
69,296 KB
testcase_07 AC 51 ms
65,732 KB
testcase_08 AC 57 ms
68,820 KB
testcase_09 AC 62 ms
68,880 KB
testcase_10 AC 38 ms
54,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
V = [input().rstrip() for _ in range(N)]
digit = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
MIN = pow(36, 12) - 1
for v in V:
    MAX = 1
    for w in v:
        MAX = max(MAX, digit.index(w))
    BASE = MAX + 1
    VAL = 0
    v = v[::-1]
    for i in range(len(v)):
        VAL += pow(BASE, i) * digit.index(v[i])
    #print(VAL)
    MIN = min(MIN, VAL)
print(MIN)
0