結果

問題 No.164 ちっちゃくないよ!!
ユーザー H20H20
提出日時 2021-03-06 12:01:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 1,188 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 70,532 KB
最終ジャッジ日時 2024-10-08 07:48:07
合計ジャッジ時間 1,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,428 KB
testcase_01 AC 39 ms
52,000 KB
testcase_02 AC 40 ms
52,136 KB
testcase_03 AC 38 ms
52,496 KB
testcase_04 AC 39 ms
53,296 KB
testcase_05 AC 70 ms
70,444 KB
testcase_06 AC 65 ms
69,072 KB
testcase_07 AC 63 ms
68,580 KB
testcase_08 AC 65 ms
69,240 KB
testcase_09 AC 66 ms
70,532 KB
testcase_10 AC 40 ms
53,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = 10**20
for i in range(N):
    V = list(input())
    L = [0]*len(V)
    for j in range(len(L)):
        if '0' <= V[j] <= '9':
            L[j]=int(V[j])
        else:
            L[j]=ord(V[j])-65+10
    n = max(L)+1
    temp = 0
    L = L[::-1]
    for j in range(len(L)):
        temp+=L[j]*n**j
    ans = min(temp,ans)
print(ans)

0