結果

問題 No.112 ややこしい鶴亀算
ユーザー yagi2yagi2
提出日時 2017-04-25 11:37:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 992 bytes
コンパイル時間 2,517 ms
コンパイル使用メモリ 80,464 KB
実行使用メモリ 55,916 KB
最終ジャッジ日時 2024-09-13 08:31:48
合計ジャッジ時間 6,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,188 KB
testcase_01 AC 145 ms
54,132 KB
testcase_02 AC 132 ms
53,908 KB
testcase_03 AC 128 ms
54,300 KB
testcase_04 AC 144 ms
54,232 KB
testcase_05 AC 143 ms
54,140 KB
testcase_06 AC 129 ms
54,216 KB
testcase_07 AC 132 ms
53,904 KB
testcase_08 AC 144 ms
54,092 KB
testcase_09 AC 143 ms
54,312 KB
testcase_10 AC 127 ms
53,992 KB
testcase_11 AC 127 ms
54,296 KB
testcase_12 AC 114 ms
52,992 KB
testcase_13 AC 143 ms
54,044 KB
testcase_14 AC 149 ms
54,392 KB
testcase_15 AC 134 ms
54,144 KB
testcase_16 AC 135 ms
54,256 KB
testcase_17 AC 133 ms
55,916 KB
testcase_18 AC 134 ms
54,132 KB
testcase_19 AC 151 ms
54,228 KB
testcase_20 AC 151 ms
54,008 KB
testcase_21 AC 137 ms
54,248 KB
testcase_22 AC 136 ms
54,232 KB
testcase_23 AC 135 ms
53,724 KB
testcase_24 AC 148 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = Integer.parseInt(sc.next());

        List<Integer> A = new ArrayList<>();
        for (int i = 0; i < N; i++) {
            A.add(Integer.parseInt(sc.next()));
        }

        int max = Integer.MIN_VALUE;
        int min = Integer.MAX_VALUE;
        for (int i = 0; i < N; i++) {
            if (max < A.get(i)) max = A.get(i);
            if (min > A.get(i)) min = A.get(i);
        }

        if (max != min) {
            int K = 0;
            int T = 0;
            for (int i = 0; i < N; i++) {
                if (A.get(i) == max) T++;
                if (A.get(i) == min) K++;
            }
            System.out.printf("%d %d\n", T, K);
        } else {
            System.out.println(((max / (A.size() - 1)) == 2)? (A.size() + " 0") : ("0 " + A.size()));
        }
    }
}
0