結果

問題 No.112 ややこしい鶴亀算
ユーザー koukonkokoukonko
提出日時 2015-12-11 18:34:46
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 3,418 ms
コンパイル使用メモリ 75,872 KB
実行使用メモリ 53,360 KB
最終ジャッジ日時 2024-09-15 08:14:52
合計ジャッジ時間 5,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
51,144 KB
testcase_01 AC 84 ms
52,880 KB
testcase_02 AC 78 ms
50,784 KB
testcase_03 AC 82 ms
51,092 KB
testcase_04 AC 80 ms
51,084 KB
testcase_05 WA -
testcase_06 AC 91 ms
50,900 KB
testcase_07 AC 80 ms
51,068 KB
testcase_08 WA -
testcase_09 AC 79 ms
50,784 KB
testcase_10 AC 79 ms
51,040 KB
testcase_11 AC 90 ms
51,408 KB
testcase_12 AC 79 ms
50,952 KB
testcase_13 WA -
testcase_14 AC 77 ms
51,268 KB
testcase_15 AC 88 ms
51,176 KB
testcase_16 AC 82 ms
51,044 KB
testcase_17 AC 79 ms
51,004 KB
testcase_18 AC 79 ms
51,000 KB
testcase_19 WA -
testcase_20 AC 76 ms
51,096 KB
testcase_21 AC 78 ms
51,020 KB
testcase_22 AC 78 ms
51,124 KB
testcase_23 AC 83 ms
51,268 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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 crane = 0;
			for(int i = 0; i < count; ++i){
				if(max == num[i]){
					crane++;
				}
			}

			System.out.println(crane + " " + (count-crane));

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