QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#578947#9313. Make MaxfuchenWA 400ms72252kbJava81.3kb2024-09-20 23:30:292024-09-20 23:30:30

Judging History

你现在查看的是最新测评结果

  • [2024-09-20 23:30:30]
  • 评测
  • 测评结果:WA
  • 用时:400ms
  • 内存:72252kb
  • [2024-09-20 23:30:29]
  • 提交

answer

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.StreamTokenizer;
import java.util.HashMap;


public class Main{
    static StreamTokenizer st=new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));
    public  static  int in() throws  Exception{
        st.nextToken();
        return (int)st.nval;
    }
    public static void main(String[] args) throws  Exception {
        int t=in();
        while(t-->0){
            int n=in();
            HashMap<Integer,Integer> map=new HashMap<>();
            int max=0;
            for(int i=1;i<=n;i++){
                int num=in();
                max=Math.max(max,num);
                if(map.containsKey(num)){
                    map.put(num,map.get(num)+1);
                }else{
                    map.put(num,1);
                }
            }
            if(map.size()==1){
                System.out.println(0);
                continue;
            }
            long cnt=0;
            long d=0;
            for(Integer i:map.keySet()){
                int count=map.get(i);
                if(i!=max) {
                    d += count;
                    cnt += d;
                }
            }
            System.out.println(cnt);
        }
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 42ms
memory: 36888kb

input:

4
2
1 2
2
2 2
7
1 1 1 2 2 2 2
3
1 2 3

output:

1
0
3
3

result:

ok 4 number(s): "1 0 3 3"

Test #2:

score: -100
Wrong Answer
time: 400ms
memory: 72252kb

input:

2
198018
875421126 585870339 471894633 383529988 625397685 944061047 704695631 105113224 459022561 760848605 980735314 847376362 980571959 329939331 644635272 326439858 752879510 837384394 175179068 182094523 397239381 1199016 185143405 279638454 252374970 822030887 860312140 137248166 993229443 164...

output:

19603748166
18189986908

result:

wrong answer 1st numbers differ - expected: '4084978', found: '19603748166'