結果

問題 No.112 ややこしい鶴亀算
ユーザー fal_rndfal_rnd
提出日時 2018-04-25 09:39:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 745 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 83,268 KB
実行使用メモリ 42,704 KB
最終ジャッジ日時 2024-06-27 20:59:48
合計ジャッジ時間 7,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,276 KB
testcase_01 AC 159 ms
42,104 KB
testcase_02 AC 155 ms
42,528 KB
testcase_03 AC 156 ms
42,600 KB
testcase_04 AC 158 ms
42,272 KB
testcase_05 AC 157 ms
42,104 KB
testcase_06 AC 156 ms
42,316 KB
testcase_07 AC 159 ms
42,256 KB
testcase_08 AC 141 ms
42,688 KB
testcase_09 AC 152 ms
42,168 KB
testcase_10 AC 158 ms
42,452 KB
testcase_11 AC 154 ms
42,532 KB
testcase_12 AC 161 ms
42,588 KB
testcase_13 AC 156 ms
42,236 KB
testcase_14 AC 159 ms
42,592 KB
testcase_15 AC 158 ms
42,264 KB
testcase_16 AC 163 ms
42,196 KB
testcase_17 AC 162 ms
42,176 KB
testcase_18 AC 161 ms
42,380 KB
testcase_19 AC 162 ms
42,428 KB
testcase_20 AC 162 ms
42,328 KB
testcase_21 AC 163 ms
42,136 KB
testcase_22 AC 162 ms
42,504 KB
testcase_23 AC 161 ms
42,524 KB
testcase_24 AC 161 ms
42,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
class Main {
    static Scanner s=new Scanner(System.in);
    static int gInt(){return Integer.parseInt(s.next());}
    public static void main(String[]$){
        int n=gInt();
        int[]a=new int[n];
        for(int i=0;i<n;++i){
            a[i]=gInt();
        }
        int[]kinds=Arrays.stream(a).distinct().sorted().toArray();
        int turu=0,kame=0;
        if(kinds.length==1){
            if(kinds[0]/(n-1)==2)
                turu=n;
            else
            kame=n;
        }else{
            for(int i:a)
                if(kinds[1]==i)
                    ++turu;
                else
                    ++kame;
        }
        System.out.println(turu+" "+kame);
    }
}
0