結果

問題 No.112 ややこしい鶴亀算
ユーザー Aru hokodateAru hokodate
提出日時 2018-10-18 18:01:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 777 bytes
コンパイル時間 4,072 ms
コンパイル使用メモリ 76,612 KB
実行使用メモリ 55,216 KB
最終ジャッジ日時 2024-11-06 20:16:49
合計ジャッジ時間 9,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
55,020 KB
testcase_01 AC 160 ms
54,760 KB
testcase_02 AC 170 ms
54,904 KB
testcase_03 AC 164 ms
54,756 KB
testcase_04 AC 157 ms
54,792 KB
testcase_05 AC 158 ms
54,876 KB
testcase_06 AC 160 ms
55,168 KB
testcase_07 AC 158 ms
54,952 KB
testcase_08 AC 161 ms
55,100 KB
testcase_09 AC 158 ms
54,816 KB
testcase_10 AC 159 ms
55,128 KB
testcase_11 AC 160 ms
55,124 KB
testcase_12 AC 159 ms
55,092 KB
testcase_13 AC 156 ms
54,744 KB
testcase_14 AC 163 ms
55,144 KB
testcase_15 AC 168 ms
55,216 KB
testcase_16 AC 167 ms
55,032 KB
testcase_17 AC 167 ms
54,848 KB
testcase_18 AC 165 ms
55,080 KB
testcase_19 AC 164 ms
55,052 KB
testcase_20 AC 165 ms
54,844 KB
testcase_21 AC 166 ms
55,160 KB
testcase_22 AC 166 ms
55,048 KB
testcase_23 AC 166 ms
54,872 KB
testcase_24 AC 166 ms
55,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki4 {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt();
        int leg[] = new int[n];
        int x = 0;
        int y = 0;
        int z = -1;
        for (int i = 0; i < n; i++) {
            leg[i] = scan.nextInt();
        }

        for (int i = 0; i < n; i++) {
            if (leg[0] == leg[i]) x++;
            else z = i;
        }
        y = n - x;

        if (2 * x + 4 * y == leg[0] + 2) {
            if (z == -1) System.out.println(x + " " + y);
            else if (2 * x + 4 * y == leg[z] + 4) System.out.println(x + " " + y);
            else System.out.println(y + " " + x);
        }
        else System.out.println(y + " " + x);
    }
}
0