結果
| 問題 | No.164 ちっちゃくないよ!! |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2015-11-21 16:39:53 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 26 ms / 2,000 ms |
| + 100µs | |
| コード長 | 403 bytes |
| 記録 | |
| コンパイル時間 | 57 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2026-09-15 18:36:53 |
| 合計ジャッジ時間 | 1,327 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
res = -1
for _ in range(int(input())):
inp = input()
while inp[0] == "0" and len(inp) > 1:
inp = inp[1:]
decimal = 2
for c in inp:
tdec = 0
if c.isdigit():
tdec = int(c) + 1
else:
tdec = ord(c) - ord('A') + 11
decimal = max(tdec, decimal)
res = min(res, int(inp, decimal)) if res != -1 else int(inp, decimal)
print(res)