Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
55394 ZZQ T1 表白 C++ 通过 100 56 MS 260 KB 606 2022-08-18 10:56:02

Tests(9/9):


#include <bits/stdc++.h> using namespace std; int a[11],Max; int Read() { int x = 0,f = 0; char c = getchar(); for(;c < '0' || c > '9';c = getchar()) f ^= (c == '-'); for(;c >= '0' && c <= '9';c = getchar()) x = (x << 3) + (x << 1) + (c ^ 48); return f ? -x : x; } int main() { int n = Read(),m = Read(),x; for(int i = 1;i <= n;i++) for(int j = 1;j <= m;j++) x = Read(), a[x]++, Max = max(Max,x); printf("%d\n",Max); for(int i = 1;i <= Max;i++) { int ans = a[i]; for(int j = i + 1;j <= Max;j++) ans += a[j]; printf("%d\n",ans); } return 0; }


测评信息: