给你一个长度为 5
的字符串 time
,表示一个电子时钟当前的时间,格式为 "hh:mm"
。最早 可能的时间是 "00:00"
,最晚 可能的时间是 "23:59"
。
在字符串 time
中,被字符 ?
替换掉的数位是 未知的 ,被替换的数字可能是 0
到 9
中的任何一个。
请你返回一个整数 answer
,将每一个 ?
都用 0
到 9
中一个数字替换后,可以得到的有效时间的数目。
示例 1:
输入:time = "?5:00" 输出:2 解释:我们可以将 ? 替换成 0 或 1 ,得到 "05:00" 或者 "15:00" 。注意我们不能替换成 2 ,因为时间 "25:00" 是无效时间。所以我们有两个选择。
示例 2:
输入:time = "0?:0?" 输出:100 解释:两个 ? 都可以被 0 到 9 之间的任意数字替换,所以我们总共有 100 种选择。
示例 3:
输入:time = "??:??" 输出:1440 解释:小时总共有 24 种选择,分钟总共有 60 种选择。所以总共有 24 * 60 = 1440 种选择。
提示:
time
是一个长度为5
的有效字符串,格式为"hh:mm"
。"00" <= hh <= "23"
"00" <= mm <= "59"
- 字符串中有的数位是
'?'
,需要用0
到9
之间的数字替换。
方法一:枚举
直接枚举所有时间,判断是否匹配 time
字符串,如果匹配则计数加一。
时间复杂度
class Solution:
def countTime(self, time: str) -> int:
def check(s, t):
for a, b in zip(s, t):
if a != b and b != '?':
return 0
return 1
return sum(
check(f'{h:02d}:{m:02d}', time) for h in range(24) for m in range(60)
)
class Solution {
public int countTime(String time) {
int ans = 0;
for (int h = 0; h < 24; ++h) {
for (int m = 0; m < 60; ++m) {
String s = String.format("%02d:%02d", h, m);
int ok = 1;
for (int i = 0; i < 5; ++i) {
if (s.charAt(i) != time.charAt(i) && time.charAt(i) != '?') {
ok = 0;
break;
}
}
ans += ok;
}
}
return ans;
}
}
class Solution {
public:
int countTime(string time) {
int ans = 0;
for (int h = 0; h < 24; ++h) {
for (int m = 0; m < 60; ++m) {
char s[20];
sprintf(s, "%02d:%02d", h, m);
int ok = 1;
for (int i = 0; i < 5; ++i) {
if (s[i] != time[i] && time[i] != '?') {
ok = 0;
break;
}
}
ans += ok;
}
}
return ans;
}
};
func countTime(time string) int {
ans := 0
for h := 0; h < 24; h++ {
for m := 0; m < 60; m++ {
s := fmt.Sprintf("%02d:%02d", h, m)
ok := 1
for i := 0; i < 5; i++ {
if s[i] != time[i] && time[i] != '?' {
ok = 0
break
}
}
ans += ok
}
}
return ans
}
function countTime(time: string): number {
let [hh, mm] = time.split(':');
return count(hh, 24) * count(mm, 60);
}
function count(str: string, limit: number): number {
let [a, b] = str.split('').map(d => Number(d));
let ans = 0;
if (isNaN(a) && isNaN(b)) return limit;
if (isNaN(a)) {
for (let i = 0; i <= 9; i++) {
if (i * 10 + b < limit) ans++;
}
return ans;
}
if (isNaN(b)) {
for (let i = 0; i <= 9; i++) {
if (a * 10 + i < limit) ans++;
}
return ans;
}
return 1;
}