結果

問題 No.182 新規性の虜
ユーザー 37zigen37zigen
提出日時 2016-08-25 16:05:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 636 ms / 5,000 ms
コード長 584 bytes
コンパイル時間 2,312 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 53,256 KB
最終ジャッジ日時 2024-06-08 08:18:54
合計ジャッジ時間 12,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,976 KB
testcase_01 AC 118 ms
41,148 KB
testcase_02 AC 109 ms
40,908 KB
testcase_03 AC 111 ms
41,052 KB
testcase_04 AC 115 ms
41,452 KB
testcase_05 AC 102 ms
40,056 KB
testcase_06 AC 106 ms
40,300 KB
testcase_07 AC 127 ms
41,256 KB
testcase_08 AC 492 ms
49,036 KB
testcase_09 AC 636 ms
49,904 KB
testcase_10 AC 561 ms
49,496 KB
testcase_11 AC 544 ms
49,696 KB
testcase_12 AC 399 ms
48,396 KB
testcase_13 AC 118 ms
40,904 KB
testcase_14 AC 115 ms
41,316 KB
testcase_15 AC 106 ms
39,892 KB
testcase_16 AC 116 ms
41,320 KB
testcase_17 AC 114 ms
40,684 KB
testcase_18 AC 592 ms
49,664 KB
testcase_19 AC 452 ms
49,068 KB
testcase_20 AC 419 ms
48,636 KB
testcase_21 AC 539 ms
49,932 KB
testcase_22 AC 400 ms
48,556 KB
testcase_23 AC 114 ms
41,116 KB
testcase_24 AC 552 ms
53,256 KB
testcase_25 AC 435 ms
48,332 KB
testcase_26 AC 263 ms
47,832 KB
testcase_27 AC 101 ms
40,140 KB
evil01.txt AC 599 ms
56,732 KB
evil02.txt AC 620 ms
58,388 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