結果

問題 No.112 ややこしい鶴亀算
ユーザー nCk_cvnCk_cv
提出日時 2015-09-19 17:42:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 76,652 KB
実行使用メモリ 42,692 KB
最終ジャッジ日時 2024-07-19 08:05:55
合計ジャッジ時間 6,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
42,188 KB
testcase_01 AC 145 ms
42,120 KB
testcase_02 AC 146 ms
42,120 KB
testcase_03 AC 137 ms
42,232 KB
testcase_04 AC 135 ms
42,548 KB
testcase_05 AC 146 ms
42,432 KB
testcase_06 AC 142 ms
42,336 KB
testcase_07 AC 153 ms
42,548 KB
testcase_08 AC 142 ms
42,084 KB
testcase_09 AC 147 ms
42,240 KB
testcase_10 AC 133 ms
42,200 KB
testcase_11 AC 133 ms
42,284 KB
testcase_12 AC 144 ms
42,376 KB
testcase_13 AC 141 ms
42,444 KB
testcase_14 AC 157 ms
42,692 KB
testcase_15 AC 156 ms
42,184 KB
testcase_16 AC 126 ms
42,508 KB
testcase_17 AC 145 ms
42,256 KB
testcase_18 AC 156 ms
42,668 KB
testcase_19 AC 147 ms
42,112 KB
testcase_20 AC 128 ms
41,752 KB
testcase_21 AC 145 ms
42,260 KB
testcase_22 AC 145 ms
42,216 KB
testcase_23 AC 152 ms
42,108 KB
testcase_24 AC 147 ms
42,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int sum = 0;
		int[] a = new int[n];
		for(int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
			sum += a[i];
		}
		int total = sum / (n-1);
		int t = 0;
		for(int i = 0; i < n; i++) {
			if(total - a[i] == 2) t++;
		}
		System.out.println(t + " " + (n-t));
		
		
		
		
		
		
		
		
		
	}

}
0