結果

問題 No.112 ややこしい鶴亀算
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-15 02:17:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 734 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 76,368 KB
実行使用メモリ 55,268 KB
最終ジャッジ日時 2024-09-22 06:45:39
合計ジャッジ時間 6,878 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
55,112 KB
testcase_01 AC 152 ms
54,876 KB
testcase_02 AC 153 ms
54,936 KB
testcase_03 AC 153 ms
55,060 KB
testcase_04 AC 154 ms
55,208 KB
testcase_05 AC 154 ms
55,148 KB
testcase_06 AC 154 ms
54,900 KB
testcase_07 AC 152 ms
54,936 KB
testcase_08 AC 152 ms
54,960 KB
testcase_09 AC 139 ms
54,544 KB
testcase_10 AC 151 ms
55,116 KB
testcase_11 AC 154 ms
54,988 KB
testcase_12 AC 153 ms
55,128 KB
testcase_13 AC 150 ms
55,056 KB
testcase_14 AC 162 ms
55,024 KB
testcase_15 AC 162 ms
55,212 KB
testcase_16 AC 143 ms
54,776 KB
testcase_17 AC 157 ms
54,920 KB
testcase_18 AC 159 ms
54,964 KB
testcase_19 AC 158 ms
55,080 KB
testcase_20 AC 157 ms
54,708 KB
testcase_21 AC 159 ms
55,064 KB
testcase_22 AC 156 ms
55,268 KB
testcase_23 AC 156 ms
54,940 KB
testcase_24 AC 157 ms
54,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] a = new int[n];
        for(int i=0; i<n; i++) {
            a[i] = in.nextInt();
        }
        in.close();

        int c_num = 0; //crane
        int t_num = 0; //turtle
        int sum = 0;

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

        sum = sum / (n - 1);

        for(int i=0; i<n; i++) {
            if(sum - a[i] == 2) {
                c_num++;
            }
            if(sum - a[i] == 4) {
                t_num++;
            }
        }

        System.out.println(c_num + " " + t_num);
    }
}
0