結果

問題 No.112 ややこしい鶴亀算
ユーザー kano_townkano_town
提出日時 2015-01-01 01:43:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 581 bytes
コンパイル時間 4,789 ms
コンパイル使用メモリ 76,816 KB
実行使用メモリ 55,128 KB
最終ジャッジ日時 2024-06-13 01:10:03
合計ジャッジ時間 8,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
55,016 KB
testcase_01 AC 143 ms
54,536 KB
testcase_02 AC 140 ms
55,128 KB
testcase_03 AC 142 ms
54,728 KB
testcase_04 AC 152 ms
54,852 KB
testcase_05 AC 154 ms
54,492 KB
testcase_06 AC 126 ms
54,272 KB
testcase_07 AC 143 ms
54,772 KB
testcase_08 AC 151 ms
54,968 KB
testcase_09 AC 141 ms
54,860 KB
testcase_10 AC 145 ms
54,804 KB
testcase_11 AC 151 ms
54,724 KB
testcase_12 AC 151 ms
54,928 KB
testcase_13 AC 140 ms
54,488 KB
testcase_14 AC 144 ms
54,272 KB
testcase_15 AC 148 ms
54,644 KB
testcase_16 AC 161 ms
54,708 KB
testcase_17 AC 154 ms
54,884 KB
testcase_18 AC 150 ms
55,020 KB
testcase_19 AC 164 ms
54,860 KB
testcase_20 AC 161 ms
54,792 KB
testcase_21 AC 150 ms
54,256 KB
testcase_22 AC 148 ms
54,580 KB
testcase_23 AC 154 ms
54,928 KB
testcase_24 AC 159 ms
54,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder112 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt(), kame = 0, tsuru = 0;
		int[] a = new int[n];
		int max = -1, min = Integer.MAX_VALUE;
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
			max = Math.max(max, a[i]);
			min = Math.min(min, a[i]);
		}

		if (max == min)
			if (max / (n - 1) == 4) kame = n;
			else tsuru = n;
		else
			for (int i = 0; i < n; i++) {
				if (a[i] == max) tsuru++;
				else kame++;
			}
		System.out.println(tsuru + " " + kame);
	}
}
0