Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
116238 梁颢城 买卖股票的最佳时机 C++ 通过 100 0 MS 264 KB 530 2023-12-16 09:39:00

Tests(4/4):


#include<bits/stdc++.h> using namespace std; int x[1010]; int y[1010]; int tmp[1010]; int main(){ int n; scanf("%d",&n); for(int i = 0;i < n;i++){ scanf("%d",&x[i]); tmp[i] = x[i]; } sort(x,x+n); for(int i = 0;i < n;i++){ for(int j = 0; j< n;j++){ if(x[j] == tmp[i]){ y[j] = i; break; } } } for(int i = 0;i < n;i++){ for(int j = n;j >= i;j--){ if(y[i] < y[j]){ cout << x[j] - x[i]; return 0; } } } cout << "0"; return 0; }


测评信息: