結果

問題 No.112 ややこしい鶴亀算
ユーザー Aru hokodateAru hokodate
提出日時 2018-10-18 17:59:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 3,853 ms
コンパイル使用メモリ 76,428 KB
実行使用メモリ 42,552 KB
最終ジャッジ日時 2024-11-06 20:13:07
合計ジャッジ時間 8,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
42,388 KB
testcase_01 AC 155 ms
42,364 KB
testcase_02 AC 154 ms
42,092 KB
testcase_03 AC 155 ms
42,184 KB
testcase_04 AC 155 ms
42,060 KB
testcase_05 AC 155 ms
42,112 KB
testcase_06 AC 151 ms
42,236 KB
testcase_07 WA -
testcase_08 AC 153 ms
42,348 KB
testcase_09 AC 152 ms
42,552 KB
testcase_10 AC 153 ms
42,320 KB
testcase_11 AC 152 ms
42,208 KB
testcase_12 AC 157 ms
42,324 KB
testcase_13 AC 156 ms
42,252 KB
testcase_14 AC 160 ms
42,436 KB
testcase_15 AC 156 ms
42,232 KB
testcase_16 AC 159 ms
42,396 KB
testcase_17 WA -
testcase_18 AC 160 ms
42,400 KB
testcase_19 AC 160 ms
42,276 KB
testcase_20 AC 162 ms
42,160 KB
testcase_21 AC 160 ms
42,228 KB
testcase_22 AC 159 ms
42,536 KB
testcase_23 AC 162 ms
42,328 KB
testcase_24 AC 150 ms
41,976 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);
    }
}
0