結果

問題 No.112 ややこしい鶴亀算
ユーザー samplelpmassamplelpmas
提出日時 2017-01-22 21:06:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 778 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 76,008 KB
実行使用メモリ 42,632 KB
最終ジャッジ日時 2024-06-02 09:33:46
合計ジャッジ時間 6,118 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
42,496 KB
testcase_01 AC 126 ms
42,060 KB
testcase_02 AC 121 ms
41,784 KB
testcase_03 AC 128 ms
42,412 KB
testcase_04 AC 123 ms
42,384 KB
testcase_05 AC 129 ms
42,240 KB
testcase_06 AC 124 ms
42,124 KB
testcase_07 AC 136 ms
42,604 KB
testcase_08 AC 133 ms
42,584 KB
testcase_09 AC 135 ms
41,952 KB
testcase_10 AC 128 ms
41,960 KB
testcase_11 AC 133 ms
42,508 KB
testcase_12 AC 133 ms
42,288 KB
testcase_13 AC 129 ms
42,540 KB
testcase_14 AC 141 ms
42,308 KB
testcase_15 AC 137 ms
41,980 KB
testcase_16 AC 117 ms
42,488 KB
testcase_17 AC 128 ms
42,616 KB
testcase_18 AC 135 ms
42,452 KB
testcase_19 AC 122 ms
42,392 KB
testcase_20 AC 129 ms
42,068 KB
testcase_21 AC 131 ms
42,112 KB
testcase_22 AC 136 ms
42,632 KB
testcase_23 AC 122 ms
42,284 KB
testcase_24 AC 138 ms
42,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numAnimals = sc.nextInt();
        int legs[] = new int[numAnimals];

        int legsSum = 0;

        for (int i = 0; i < numAnimals; i++) {
            legs[i] = sc.nextInt();
            legsSum += legs[i];
        }

        legsSum /= numAnimals - 1;

        int cranesCount = 0;
        int turtlesCount = 0;

        for (int i = 0; i < numAnimals; i++) {

            if (legsSum - legs[i] == 2) {
                cranesCount++;
            }

            if (legsSum - legs[i] == 4) {
                turtlesCount++;
            }

        }

        System.out.println(cranesCount + " " + turtlesCount);

    }

}
0