結果
問題 |
No.164 ちっちゃくないよ!!
|
ユーザー |
![]() |
提出日時 | 2020-12-10 19:36:08 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 269 bytes |
コンパイル時間 | 168 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-19 20:39:52 |
合計ジャッジ時間 | 1,189 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
import string table = string.digits + string.ascii_uppercase res = float("inf") for _ in range(int(input())): S = input() m = max([table.find(s) + 1 for s in S]) res = min(res, sum([table.find(s) * pow(m, i) for i, s in enumerate(S[::-1])])) print(res)