| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153889 | 张浩然 | 19选班长II | C++ | Wrong Answer | 1 MS | 272 KB | 466 | 2026-05-24 10:57:57 |
#include<bits/stdc++.h> using namespace std; int main() { int a[4]= {0}; int tot=0; int piao; while(1){ cin>>piao; if(piao==-1){ break; } a[piao]++; tot++; } cout<<"A:"<<a[1]<<endl; cout<<"B:"<<a[2]<<endl; cout<<"C:"<<a[3]<<endl; cout<<"Tot:"<<tot<<endl; if(a[1]>tot/2) { cout<<"A-yes"; } else if(a[2]>tot/2) { cout<<"B-yes"; }else if(a[3]>tot/2){ cout<<"C-yes"; }else{ cout<<"all-NO"; } return 0; }
------Input------
4 3 4 2 1 3 1 4 1 4 1 2 1 3 3 1 3 4 3 1 4 4 4 4 4 4 4 4 1 1 4 4 1 2 4 3 4 2 1 2 1 3 3 3 -1
------Answer-----
A=12 B=5 C=10 Tot=44 all-NO
------Your output-----
A:12 B:5 C:10 Tot:44 all-NO