1011: 链接: 1011 World Cup Betting - PAT (Advanced Level) Practice (pintia.cn) 题意及解题思路: 简单来说就是给你3行数字,每一行都是按照W,T,L的顺序给出相应的赔率。我们需要找到每一行的W,T,L当中最大的一个数,累乘的结果再乘以0.65,按照例子写出表达式即可。 同时还需要记录每一次选择的是W,T还是L
1012. The Best Rank (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue To evaluate the performance of our first year CS majored students, we consider
直接采用二维数组模拟实现 #include <iostream>using namespace std;const int N = 100;int arr[N][N];int point[N];//计数int main(){int m, n,data;cin >> m >> n;for (int i = 0; i < n; i++){cin >> data;int key = d
简单的枚举 规律:最大公约数和最小公倍数的积等于所求两个数的乘积。 还用到了辗转相除,准备好好整理一下。(辗转相除法的相关证明:) 代码: #include <iostream>#include <cstdio>using namespace std;int gcd(int a, int b); int main(){//freopen("in.txt","r",stdi
好久没更LeetCode了,因为最近手头的事情比较多。今天更新两条easy问题。 1013. Pairs of Songs With Total Durations Divisible by 60 这个问题是一个模算术问题。将歌曲时长转为[0,59]余数即可。 class Solution {public int numPairsDivisibleBy60(int[] time) {int
题目描述: To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C - C Programming Language, M - Mathematics (Calculus or Linear Algrbra), and E