-
Notifications
You must be signed in to change notification settings - Fork 0
/
1010.总持续时间可被-60-整除的歌曲.c
60 lines (53 loc) · 1.3 KB
/
1010.总持续时间可被-60-整除的歌曲.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* @lc app=leetcode.cn id=1010 lang=c
*
* [1010] 总持续时间可被 60 整除的歌曲
*
* https://leetcode-cn.com/problems/pairs-of-songs-with-total-durations-divisible-by-60/description/
*
* algorithms
* Easy (43.28%)
* Likes: 103
* Dislikes: 0
* Total Accepted: 13.8K
* Total Submissions: 32K
* Testcase Example: '[30,20,150,100,40]'
*
* 在歌曲列表中,第 i 首歌曲的持续时间为 time[i] 秒。
*
* 返回其总持续时间(以秒为单位)可被 60 整除的歌曲对的数量。形式上,我们希望索引的数字 i 和 j 满足 i < j 且有 (time[i] +
* time[j]) % 60 == 0。
*
*
*
* 示例 1:
*
* 输入:[30,20,150,100,40]
* 输出:3
* 解释:这三对的总持续时间可被 60 整数:
* (time[0] = 30, time[2] = 150): 总持续时间 180
* (time[1] = 20, time[3] = 100): 总持续时间 120
* (time[1] = 20, time[4] = 40): 总持续时间 60
*
*
* 示例 2:
*
* 输入:[60,60,60]
* 输出:3
* 解释:所有三对的总持续时间都是 120,可以被 60 整数。
*
*
*
*
* 提示:
*
*
* 1 <= time.length <= 60000
* 1 <= time[i] <= 500
*
*
*/
// @lc code=start
int numPairsDivisibleBy60(int* time, int timeSize){
}
// @lc code=end