結果

問題 No.112 ややこしい鶴亀算
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-17 16:22:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 750 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 79,272 KB
実行使用メモリ 55,260 KB
最終ジャッジ日時 2024-06-24 12:12:40
合計ジャッジ時間 6,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,784 KB
testcase_01 AC 130 ms
53,060 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 147 ms
54,072 KB
testcase_05 AC 144 ms
54,088 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 132 ms
53,340 KB
testcase_09 AC 141 ms
54,208 KB
testcase_10 WA -
testcase_11 AC 152 ms
54,908 KB
testcase_12 WA -
testcase_13 AC 142 ms
54,196 KB
testcase_14 AC 148 ms
54,136 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 136 ms
53,196 KB
testcase_20 AC 151 ms
54,244 KB
testcase_21 WA -
testcase_22 AC 160 ms
54,980 KB
testcase_23 WA -
testcase_24 AC 150 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] animal = new int[n];
		int min = Integer.MAX_VALUE;
		int max = Integer.MIN_VALUE;
		for (int i=0; i<n; i++) {
			animal[i] = sc.nextInt();
			min = Math.min(min,animal[i]);
			max = Math.max(max,animal[i]);
		}
		int min_num = 0;
		int max_num = 0;
		for (int i=0; i<n; i++) {
			if (animal[i]==min) {min_num++;}
			else if (animal[i]==max) {max_num++;}
		}
		if (min != max) {System.out.println(min_num+" "+max_num);}
		else if (min == max) {
			int species = min/(n-1);
			if (species == 2) {System.out.println(n+" "+0);}
			else if (species == 4) {System.out.println(0+" "+n);}
		}
	}
}
0