結果

問題 No.112 ややこしい鶴亀算
ユーザー spaciaspacia
提出日時 2016-01-03 16:26:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 686 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 75,452 KB
実行使用メモリ 39,988 KB
最終ジャッジ日時 2024-09-19 10:49:18
合計ジャッジ時間 4,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
37,820 KB
testcase_01 AC 69 ms
37,964 KB
testcase_02 AC 71 ms
38,464 KB
testcase_03 AC 74 ms
38,452 KB
testcase_04 AC 80 ms
39,848 KB
testcase_05 AC 72 ms
38,112 KB
testcase_06 AC 73 ms
39,600 KB
testcase_07 AC 68 ms
39,588 KB
testcase_08 AC 67 ms
39,632 KB
testcase_09 AC 70 ms
39,832 KB
testcase_10 AC 67 ms
38,220 KB
testcase_11 AC 82 ms
38,024 KB
testcase_12 AC 72 ms
39,424 KB
testcase_13 AC 67 ms
39,616 KB
testcase_14 AC 68 ms
39,680 KB
testcase_15 AC 86 ms
39,988 KB
testcase_16 AC 81 ms
38,184 KB
testcase_17 AC 74 ms
38,176 KB
testcase_18 AC 80 ms
39,180 KB
testcase_19 AC 84 ms
38,136 KB
testcase_20 AC 69 ms
39,760 KB
testcase_21 AC 68 ms
38,096 KB
testcase_22 AC 68 ms
38,104 KB
testcase_23 AC 71 ms
39,704 KB
testcase_24 AC 70 ms
38,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
		
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		String[] line = br.readLine().split(" ");
		int[] nums = new int[n];
		
		int sum = 0;
		for (int i = 0; i < n; i++) {
			nums[i] = Integer.parseInt(line[i]);
			sum += nums[i];
		}
		sum /= n - 1;
		
		int cntCrane = 0 , cntTurtle = 0;
		for (int m : nums) {
			if ((sum - m) % 4 == 0)
				cntTurtle++;
			else
				cntCrane++;
		}
		
		out(cntCrane + " " + cntTurtle);
	}
}
0