結果

問題 No.164 ちっちゃくないよ!!
ユーザー mlihua09mlihua09
提出日時 2020-09-04 15:13:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 71,872 KB
最終ジャッジ日時 2024-11-25 20:48:32
合計ジャッジ時間 1,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,428 KB
testcase_01 AC 36 ms
52,836 KB
testcase_02 AC 37 ms
53,084 KB
testcase_03 AC 36 ms
53,432 KB
testcase_04 AC 37 ms
52,252 KB
testcase_05 AC 69 ms
71,872 KB
testcase_06 AC 62 ms
69,424 KB
testcase_07 AC 57 ms
67,020 KB
testcase_08 AC 61 ms
69,492 KB
testcase_09 AC 62 ms
70,108 KB
testcase_10 AC 40 ms
53,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


ans = 36 ** 12 + 1

for _ in range(int(input())):
    S = [ord(i) - ord('0') if ord(i) < ord('A') else ord(i) - ord('A') + 10 for i in input()]
    p = max(S) + 1
    
    S.reverse()
    x = 0
    y = 1
    for s in S:
        x += s * y
        y *= p
    ans = min(ans, x)
    
print(ans)
0