結果

問題 No.112 ややこしい鶴亀算
ユーザー koukonkokoukonko
提出日時 2015-12-11 18:41:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 1,016 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 78,996 KB
実行使用メモリ 52,944 KB
最終ジャッジ日時 2024-09-15 08:15:01
合計ジャッジ時間 5,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
51,144 KB
testcase_01 AC 79 ms
50,820 KB
testcase_02 AC 83 ms
50,744 KB
testcase_03 AC 78 ms
51,196 KB
testcase_04 AC 82 ms
51,120 KB
testcase_05 AC 89 ms
51,128 KB
testcase_06 AC 89 ms
51,036 KB
testcase_07 AC 79 ms
51,148 KB
testcase_08 AC 90 ms
51,496 KB
testcase_09 AC 81 ms
51,284 KB
testcase_10 AC 78 ms
51,044 KB
testcase_11 AC 79 ms
51,384 KB
testcase_12 AC 77 ms
51,408 KB
testcase_13 AC 78 ms
52,944 KB
testcase_14 AC 80 ms
50,752 KB
testcase_15 AC 81 ms
50,860 KB
testcase_16 AC 87 ms
51,204 KB
testcase_17 AC 91 ms
52,916 KB
testcase_18 AC 77 ms
51,144 KB
testcase_19 AC 79 ms
51,220 KB
testcase_20 AC 76 ms
51,004 KB
testcase_21 AC 78 ms
51,276 KB
testcase_22 AC 83 ms
51,380 KB
testcase_23 AC 77 ms
51,200 KB
testcase_24 AC 77 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			int count = Integer.parseInt(buff.readLine());

			String[] box = buff.readLine().split(" ");
			int[] num = new int[count];
			int max = 0;

			for (int i = 0; i < count; ++i) {
				num[i] = Integer.parseInt(box[i]);
				if (max < num[i]) {
					max = num[i];
				}
			}
			int check = 0;
			boolean flag = true;

			for (int i = 0; i < count; ++i) {
				if (max == num[i]) {
					check++;
				} else {
					flag = false;
				}
			}

			if (flag && count * 2 - 2 != max) {
				System.out.println((count - check) + " " + check);
			} else {
				System.out.println(check + " " + (count - check));
			}

		} catch (NumberFormatException e) {
			e.getStackTrace();
		} catch (IOException e) {
			e.getStackTrace();
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0