結果

問題 No.112 ややこしい鶴亀算
ユーザー Aru hokodateAru hokodate
提出日時 2018-10-18 17:48:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 575 bytes
コンパイル時間 4,645 ms
コンパイル使用メモリ 76,608 KB
実行使用メモリ 55,076 KB
最終ジャッジ日時 2024-11-06 19:46:20
合計ジャッジ時間 8,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
54,832 KB
testcase_01 WA -
testcase_02 AC 159 ms
54,972 KB
testcase_03 AC 157 ms
54,972 KB
testcase_04 WA -
testcase_05 AC 161 ms
54,528 KB
testcase_06 AC 161 ms
54,940 KB
testcase_07 AC 161 ms
54,684 KB
testcase_08 AC 163 ms
54,904 KB
testcase_09 WA -
testcase_10 AC 161 ms
54,756 KB
testcase_11 AC 159 ms
54,552 KB
testcase_12 AC 160 ms
54,596 KB
testcase_13 AC 158 ms
54,824 KB
testcase_14 WA -
testcase_15 AC 164 ms
55,020 KB
testcase_16 AC 166 ms
55,064 KB
testcase_17 AC 163 ms
54,772 KB
testcase_18 AC 166 ms
54,944 KB
testcase_19 AC 164 ms
54,824 KB
testcase_20 WA -
testcase_21 AC 168 ms
54,772 KB
testcase_22 AC 155 ms
54,616 KB
testcase_23 AC 164 ms
54,936 KB
testcase_24 AC 165 ms
54,936 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=0;
        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&&2*x+4*y==leg[z]+4)System.out.println(x+" "+y);
        else System.out.println(y+" "+x);

    }
}
0