結果

問題 No.112 ややこしい鶴亀算
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 11:58:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 925 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 75,396 KB
実行使用メモリ 40,012 KB
最終ジャッジ日時 2024-09-13 23:33:35
合計ジャッジ時間 5,267 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
38,024 KB
testcase_01 AC 76 ms
38,016 KB
testcase_02 AC 76 ms
37,912 KB
testcase_03 AC 79 ms
38,144 KB
testcase_04 AC 76 ms
38,032 KB
testcase_05 AC 81 ms
39,772 KB
testcase_06 AC 79 ms
38,272 KB
testcase_07 AC 78 ms
38,404 KB
testcase_08 AC 79 ms
38,112 KB
testcase_09 AC 77 ms
38,328 KB
testcase_10 AC 76 ms
37,864 KB
testcase_11 AC 78 ms
38,060 KB
testcase_12 AC 76 ms
38,220 KB
testcase_13 AC 75 ms
38,328 KB
testcase_14 AC 80 ms
40,012 KB
testcase_15 AC 80 ms
38,108 KB
testcase_16 AC 87 ms
38,168 KB
testcase_17 AC 88 ms
38,692 KB
testcase_18 AC 83 ms
39,600 KB
testcase_19 AC 81 ms
37,916 KB
testcase_20 AC 76 ms
37,972 KB
testcase_21 AC 79 ms
39,572 KB
testcase_22 AC 83 ms
39,884 KB
testcase_23 AC 78 ms
38,172 KB
testcase_24 AC 80 ms
37,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());
        int sum = 0;
        String[] inputs = reader.readLine().split(" ");
        int[] legsArr = new int[N];
        for (int i = 0; i < N; i++) {
            int legs = Integer.parseInt(inputs[i]);
            sum += legs;
            legsArr[i] = legs;
        }
        sum = sum / (N - 1);
        int turtle=0;
        int cranes =0;

        for (int i = 0; i < N; i++) {
            if((sum-legsArr[i])%4 ==0) {
                turtle+=1;
            } else {
                cranes+=1;
            }
        }
        System.out.println(cranes +" " + turtle);
    }
}
0