题解 1393: 钟神赛车

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

钟神赛车 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;int main (){ int n; while(……

钟神赛车 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n[100],i,j=0,a[100][100],b[100][100]; while(~s……

我美吗!

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {  int a[1000],n,i,j,money;  while(scanf("%d",&n)!=……

钟神赛车 (C++代码)

摘要:解题思路:田忌赛马的想法,把两个人的速度大小排序,i从零开始,用p[i]和q[i-1]比较,最后用p[0]和q[n-1]比较,比较过程中进行计数,最后*50输出计数结果。参考代码:#include<i……

钟神赛车 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <string.h>int main(){ int a[100],i,j,n,t,s=0; while(scanf("%d",&n)!=EOF) {  ……

钟神赛车 (Java代码)

摘要:解题思路:注意事项:参考代码:public class 钟神赛车_水到不能再水 { public static void main(String[] args) { // TODO Auto-gen……

钟神赛车 (C++代码)

摘要:将输入的数据由小到大排序一遍,将钟神的速度最慢的和某君速度最快的相比,然后再按照速度 由小到大让两人直接相比即可。 #include"bits/stdc++.h" using namespa……