結果

問題 No.112 ややこしい鶴亀算
ユーザー tentententen
提出日時 2020-11-05 18:53:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 657 bytes
コンパイル時間 2,692 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 42,656 KB
最終ジャッジ日時 2024-07-22 11:17:34
合計ジャッジ時間 7,136 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
42,044 KB
testcase_01 AC 150 ms
42,208 KB
testcase_02 AC 152 ms
42,156 KB
testcase_03 AC 150 ms
42,112 KB
testcase_04 AC 151 ms
42,284 KB
testcase_05 AC 150 ms
42,180 KB
testcase_06 AC 150 ms
42,444 KB
testcase_07 AC 151 ms
42,184 KB
testcase_08 AC 151 ms
42,252 KB
testcase_09 AC 152 ms
42,480 KB
testcase_10 AC 151 ms
42,472 KB
testcase_11 AC 153 ms
42,356 KB
testcase_12 AC 152 ms
42,200 KB
testcase_13 AC 149 ms
42,520 KB
testcase_14 AC 157 ms
42,296 KB
testcase_15 AC 158 ms
42,464 KB
testcase_16 AC 159 ms
42,244 KB
testcase_17 AC 160 ms
42,464 KB
testcase_18 AC 159 ms
42,356 KB
testcase_19 AC 161 ms
42,176 KB
testcase_20 AC 158 ms
42,416 KB
testcase_21 AC 160 ms
42,456 KB
testcase_22 AC 159 ms
42,656 KB
testcase_23 AC 158 ms
42,208 KB
testcase_24 AC 156 ms
42,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		TreeMap<Integer, Integer> map = new TreeMap<>();
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    map.put(x, map.getOrDefault(x, 0) + 1);
		}
		int bird;
		int turtle;
		if (map.size() == 1) {
		    if (map.firstKey() / (n - 1) == 2) {
		        bird = n;
		        turtle = 0;
		    } else {
		        bird = 0;
		        turtle = n;
		    }
		} else {
		    bird = map.lastEntry().getValue();
		    turtle = map.firstEntry().getValue();
		}
		System.out.println(bird + " " + turtle);
	}
}
0