結果

問題 No.164 ちっちゃくないよ!!
ユーザー aka_satana_haaka_satana_ha
提出日時 2017-12-07 09:57:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-06 19:12:46
合計ジャッジ時間 1,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 50 ms
10,880 KB
testcase_06 AC 49 ms
10,880 KB
testcase_07 AC 36 ms
10,752 KB
testcase_08 AC 38 ms
10,752 KB
testcase_09 AC 44 ms
10,880 KB
testcase_10 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

tmp_min=float("inf")
for i in range(N):
    v=input().strip()
    #進数の決定
    base=0
    for j in range(len(v)):
        tmp_base=0
        #数字
        if ord(v[j])<=ord('9'):
            tmp_base=ord(v[j])-ord('0')
        #英大文字
        else:
            tmp_base=10+ord(v[j])-ord('A')
        if tmp_base>base:
            base=tmp_base
    base+=1
    #10進数での値の算出
    tmp=0
    mul=1
    for j in reversed(range(len(v))):
        #数字
        if ord(v[j])<=ord('9'):
            tmp+=mul*(ord(v[j])-ord('0'))
        #英大文字
        else:
            tmp+=mul*(10+ord(v[j])-ord('A'))
        mul*=base
    if tmp_min>tmp:
        tmp_min=tmp
print(tmp_min)
0