結果

問題 No.112 ややこしい鶴亀算
ユーザー ffmm00ffmm00
提出日時 2015-06-15 21:21:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 4,127 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 55,196 KB
最終ジャッジ日時 2024-07-06 21:05:00
合計ジャッジ時間 8,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
55,056 KB
testcase_01 AC 141 ms
55,112 KB
testcase_02 AC 143 ms
54,992 KB
testcase_03 AC 133 ms
54,700 KB
testcase_04 AC 131 ms
54,816 KB
testcase_05 AC 143 ms
55,160 KB
testcase_06 AC 127 ms
54,360 KB
testcase_07 AC 141 ms
55,052 KB
testcase_08 AC 127 ms
54,632 KB
testcase_09 AC 146 ms
55,004 KB
testcase_10 AC 137 ms
54,848 KB
testcase_11 AC 138 ms
54,868 KB
testcase_12 AC 158 ms
55,036 KB
testcase_13 AC 135 ms
54,528 KB
testcase_14 AC 145 ms
54,568 KB
testcase_15 AC 146 ms
54,812 KB
testcase_16 AC 160 ms
54,612 KB
testcase_17 AC 149 ms
54,816 KB
testcase_18 AC 148 ms
54,836 KB
testcase_19 AC 154 ms
54,444 KB
testcase_20 AC 146 ms
55,048 KB
testcase_21 AC 152 ms
54,964 KB
testcase_22 AC 151 ms
54,928 KB
testcase_23 AC 156 ms
55,196 KB
testcase_24 AC 142 ms
54,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N112 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);
		int n = sca.nextInt();
		int[] a = new int[n];
		int sum = 0;
		int t = 0;
		int k = 0;

		for (int i = 0; i < n; i++) {
			a[i] = sca.nextInt();
			sum += a[i];
		}

		sum /= (n - 1);

		for (int i = 0; i < n; i++) {
			if (sum - a[i] == 2)
				t++;
			else
				k++;
		}

		System.out.println(t + " " + k);

	}

}
0