結果

問題 No.164 ちっちゃくないよ!!
ユーザー TawaraTawara
提出日時 2015-08-28 22:17:13
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-18 15:09:00
合計ジャッジ時間 1,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 11 ms
6,948 KB
testcase_03 AC 12 ms
6,944 KB
testcase_04 AC 14 ms
6,944 KB
testcase_05 WA -
testcase_06 AC 84 ms
6,944 KB
testcase_07 AC 43 ms
6,944 KB
testcase_08 AC 63 ms
6,940 KB
testcase_09 AC 63 ms
6,940 KB
testcase_10 AC 12 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def s2m(s):
	ans = 35**12
	for n in range(2,37):
		tmp = 0
		for i,c in enumerate(s):
			z = int(c) if c.isdigit() else (ord(c)-55)
			if z >= n:
				break
			tmp += z*n**i
		else:
			ans = min(ans,tmp)
	return ans
N = input()
print min(s2m(raw_input()[::-1]) for i in range(N))
0