結果

問題 No.112 ややこしい鶴亀算
ユーザー aim_cpoaim_cpo
提出日時 2019-04-19 14:56:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 947 bytes
コンパイル時間 5,414 ms
コンパイル使用メモリ 77,128 KB
実行使用メモリ 55,284 KB
最終ジャッジ日時 2024-09-22 11:29:09
合計ジャッジ時間 9,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,456 KB
testcase_01 AC 142 ms
54,060 KB
testcase_02 AC 150 ms
55,284 KB
testcase_03 AC 150 ms
55,144 KB
testcase_04 AC 142 ms
54,340 KB
testcase_05 AC 140 ms
54,396 KB
testcase_06 AC 149 ms
55,052 KB
testcase_07 AC 153 ms
54,664 KB
testcase_08 AC 140 ms
54,240 KB
testcase_09 AC 141 ms
54,264 KB
testcase_10 AC 156 ms
54,964 KB
testcase_11 AC 153 ms
55,028 KB
testcase_12 AC 154 ms
54,968 KB
testcase_13 AC 146 ms
54,292 KB
testcase_14 AC 152 ms
54,348 KB
testcase_15 AC 158 ms
54,880 KB
testcase_16 AC 158 ms
54,820 KB
testcase_17 AC 158 ms
55,152 KB
testcase_18 AC 159 ms
55,156 KB
testcase_19 AC 147 ms
54,344 KB
testcase_20 AC 149 ms
54,532 KB
testcase_21 AC 158 ms
55,112 KB
testcase_22 AC 161 ms
54,856 KB
testcase_23 AC 161 ms
54,992 KB
testcase_24 AC 149 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

import static java.lang.Math.max;
import static java.lang.Math.min;

public class TaskL {
    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        int n = cin.nextInt();
        int a[] = new int[n];
        int min = Integer.MAX_VALUE;
        int max = Integer.MIN_VALUE;
        for (int i = 0; i < n; ++i) {
            a[i] = cin.nextInt();
            min = min(min, a[i]);
            max = max(max, a[i]);
        }
        if (max == min) {
            int one = max / (n - 1);
            if (one == 2) {
                System.out.println(n + " " + 0);
            } else {
                System.out.println(0 + " " + n);
            }
        } else {
            int t = 0, k = 0;
            for (int i = 0; i < n; ++i) {
                if (a[i] == min) k++;
                else t++;
            }
            System.out.println(t + " " + k);
        }
    }
}
0