結果

問題 No.112 ややこしい鶴亀算
ユーザー tsunabittsunabit
提出日時 2019-05-06 10:52:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 5,000 ms
コード長 807 bytes
コンパイル時間 3,717 ms
コンパイル使用メモリ 76,568 KB
実行使用メモリ 42,788 KB
最終ジャッジ日時 2024-06-27 05:26:00
合計ジャッジ時間 9,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
42,300 KB
testcase_01 AC 155 ms
41,668 KB
testcase_02 AC 168 ms
42,324 KB
testcase_03 AC 163 ms
42,612 KB
testcase_04 AC 152 ms
41,668 KB
testcase_05 AC 153 ms
41,544 KB
testcase_06 AC 174 ms
42,332 KB
testcase_07 AC 147 ms
41,844 KB
testcase_08 AC 149 ms
41,412 KB
testcase_09 AC 152 ms
41,912 KB
testcase_10 AC 160 ms
42,564 KB
testcase_11 AC 160 ms
42,316 KB
testcase_12 AC 163 ms
42,476 KB
testcase_13 AC 151 ms
41,264 KB
testcase_14 AC 158 ms
41,780 KB
testcase_15 AC 167 ms
42,504 KB
testcase_16 AC 169 ms
42,660 KB
testcase_17 AC 187 ms
42,788 KB
testcase_18 AC 186 ms
42,728 KB
testcase_19 AC 178 ms
41,508 KB
testcase_20 AC 178 ms
41,756 KB
testcase_21 AC 188 ms
42,432 KB
testcase_22 AC 177 ms
42,368 KB
testcase_23 AC 165 ms
42,408 KB
testcase_24 AC 158 ms
41,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No112 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] a = new int[n];
        for(int i = 0; i < n; i++) {
        	a[i] = sc.nextInt();
        }
        
        int min = a[0];
		int max = a[0];
		for(int i = 1; i < n; i++) {
			min = Math.min(min, a[i]);
			max = Math.max(max, a[i]);
		}
		
		if(max == min) {
			if((max / (n-1)) == 4) System.out.println(0 + " " + n);
			else System.out.println(n + " " + 0);
		}else {
			int kame = 0, tsuru = 0;
			for(int i = 0; i < n; i++) {
				if(a[i] == max) kame++;
				else tsuru++;
			}
			System.out.println(kame + " " + tsuru);
		}
    }
}
0