钟神赛车 (C语言代码) 摘要:#include <stdio.h>#define M 1000int main(){ int n; int a[M],b[M]; int i,j,t,k; int value,win,lose,ma…… 题解列表 2017年08月19日 1 点赞 0 评论 1063 浏览 评分:4.0
钟神赛车 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;int main (){ int n; while(…… 题解列表 2017年08月26日 0 点赞 0 评论 992 浏览 评分:2.0
钟神赛车 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n[100],i,j=0,a[100][100],b[100][100]; while(~s…… 题解列表 2017年10月22日 0 点赞 0 评论 739 浏览 评分:0.0
钟神赛车 (C++代码)(标准题解)(与田忌赛马类似) 摘要:这题的题解是转自网上博客 是最标准的答案 (1)先比较两者的好马,如果田忌的好马可以赢过齐王的好马,果断去比,高手过招,赢了才更有满 足感,自豪感嘛! …… 题解列表 2017年11月28日 9 点赞 0 评论 2055 浏览 评分:6.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a[1000],n,i,j,money; while(scanf("%d",&n)!=…… 题解列表 2017年12月19日 1 点赞 3 评论 815 浏览 评分:7.3
钟神赛车 (C++代码) 摘要:解题思路:田忌赛马的想法,把两个人的速度大小排序,i从零开始,用p[i]和q[i-1]比较,最后用p[0]和q[n-1]比较,比较过程中进行计数,最后*50输出计数结果。参考代码:#include<i…… 题解列表 2018年01月05日 3 点赞 1 评论 817 浏览 评分:9.9
钟神赛车 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <string.h>int main(){ int a[100],i,j,n,t,s=0; while(scanf("%d",&n)!=EOF) { …… 题解列表 2018年03月01日 0 点赞 0 评论 619 浏览 评分:0.0
钟神赛车 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 钟神赛车_水到不能再水 { public static void main(String[] args) { // TODO Auto-gen…… 题解列表 2018年05月03日 0 点赞 0 评论 581 浏览 评分:0.0
钟神赛车 (C++代码) 摘要:将输入的数据由小到大排序一遍,将钟神的速度最慢的和某君速度最快的相比,然后再按照速度 由小到大让两人直接相比即可。 #include"bits/stdc++.h" using namespa…… 题解列表 2018年06月14日 3 点赞 2 评论 544 浏览 评分:0.0
钟神赛车 (C++代码)容易理解 可AC 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int main(){ int n;…… 题解列表 2018年08月06日 3 点赞 1 评论 368 浏览 评分:4.0