結果

問題 No.112 ややこしい鶴亀算
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-23 22:41:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 4,211 ms
コンパイル使用メモリ 84,296 KB
実行使用メモリ 42,268 KB
最終ジャッジ日時 2024-10-11 18:57:43
合計ジャッジ時間 8,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,160 KB
testcase_01 AC 145 ms
41,820 KB
testcase_02 AC 151 ms
42,060 KB
testcase_03 AC 152 ms
41,972 KB
testcase_04 AC 142 ms
41,752 KB
testcase_05 AC 153 ms
42,180 KB
testcase_06 AC 153 ms
42,232 KB
testcase_07 AC 156 ms
42,072 KB
testcase_08 AC 153 ms
42,128 KB
testcase_09 AC 152 ms
42,096 KB
testcase_10 AC 153 ms
42,160 KB
testcase_11 AC 154 ms
42,212 KB
testcase_12 AC 147 ms
41,772 KB
testcase_13 AC 155 ms
41,940 KB
testcase_14 AC 147 ms
41,992 KB
testcase_15 AC 158 ms
42,248 KB
testcase_16 AC 155 ms
41,776 KB
testcase_17 AC 159 ms
42,268 KB
testcase_18 AC 164 ms
42,264 KB
testcase_19 AC 163 ms
42,048 KB
testcase_20 AC 151 ms
41,580 KB
testcase_21 AC 146 ms
41,916 KB
testcase_22 AC 159 ms
42,040 KB
testcase_23 AC 159 ms
42,088 KB
testcase_24 AC 151 ms
41,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise115{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    int[] a = new int[n];
    boolean f = false;
    int bigger = 0;
    for(int i = 0; i < n; i++){
      a[i] = sc.nextInt();
      bigger = Math.max(bigger, a[i]);
      if(i > 0 && a[i] != a[i - 1]){
        f = true;
      }
    }
    int t = 0;
    int k = 0;
    if(f){
      for(int i = 0; i < n; i++){
        if(a[i] == bigger){
          t++;
        }else{
          k++;
        }
      }
    }else{
      if(a[0] / (n - 1) == 2){
        t = n;
      }else{
        k = n;
      }
    }
    System.out.println(t + " " + k);
  }
}
0