結果

問題 No.182 新規性の虜
ユーザー 37zigen37zigen
提出日時 2016-03-31 13:42:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 594 ms / 5,000 ms
コード長 584 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 75,844 KB
実行使用メモリ 53,108 KB
最終ジャッジ日時 2024-06-08 06:11:05
合計ジャッジ時間 12,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,040 KB
testcase_01 AC 113 ms
41,292 KB
testcase_02 AC 105 ms
41,268 KB
testcase_03 AC 97 ms
40,256 KB
testcase_04 AC 108 ms
41,324 KB
testcase_05 AC 100 ms
40,060 KB
testcase_06 AC 108 ms
41,408 KB
testcase_07 AC 110 ms
41,024 KB
testcase_08 AC 506 ms
49,296 KB
testcase_09 AC 594 ms
50,268 KB
testcase_10 AC 550 ms
49,576 KB
testcase_11 AC 535 ms
49,264 KB
testcase_12 AC 377 ms
47,968 KB
testcase_13 AC 99 ms
39,936 KB
testcase_14 AC 111 ms
41,324 KB
testcase_15 AC 105 ms
40,700 KB
testcase_16 AC 111 ms
40,916 KB
testcase_17 AC 115 ms
41,308 KB
testcase_18 AC 570 ms
49,364 KB
testcase_19 AC 460 ms
49,008 KB
testcase_20 AC 371 ms
48,480 KB
testcase_21 AC 563 ms
49,592 KB
testcase_22 AC 422 ms
48,384 KB
testcase_23 AC 109 ms
40,660 KB
testcase_24 AC 524 ms
53,108 KB
testcase_25 AC 466 ms
48,276 KB
testcase_26 AC 259 ms
47,680 KB
testcase_27 AC 104 ms
40,572 KB
evil01.txt AC 571 ms
55,828 KB
evil02.txt AC 618 ms
55,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder182;
import java.util.PriorityQueue;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		PriorityQueue<Integer> pq=new PriorityQueue<>(n);
		for(int i=0;i<n;i++){
			pq.add(sc.nextInt());
		}
		int count=1;
		int memo=pq.poll();
		while(!pq.isEmpty()){
			int t=pq.poll();
			if(t!=memo){
				count++;
				memo=t;
			}else{
				count--;
				while(t==memo&&!pq.isEmpty()){
					t=pq.poll();
					if(t!=memo)pq.add(t);
				}
				
			}
		}
		System.out.println(count);
	}
}
0