結果

問題 No.112 ややこしい鶴亀算
ユーザー btkbtk
提出日時 2017-10-13 14:06:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 760 bytes
コンパイル時間 4,486 ms
コンパイル使用メモリ 86,452 KB
実行使用メモリ 55,244 KB
最終ジャッジ日時 2024-11-17 11:24:16
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
54,812 KB
testcase_01 AC 152 ms
54,172 KB
testcase_02 AC 163 ms
54,832 KB
testcase_03 AC 163 ms
54,872 KB
testcase_04 AC 156 ms
54,068 KB
testcase_05 AC 154 ms
54,128 KB
testcase_06 AC 161 ms
54,704 KB
testcase_07 AC 161 ms
55,064 KB
testcase_08 AC 150 ms
54,020 KB
testcase_09 AC 153 ms
53,936 KB
testcase_10 AC 164 ms
55,088 KB
testcase_11 AC 162 ms
55,036 KB
testcase_12 AC 160 ms
54,968 KB
testcase_13 AC 155 ms
54,208 KB
testcase_14 AC 155 ms
54,184 KB
testcase_15 AC 167 ms
55,040 KB
testcase_16 AC 168 ms
54,928 KB
testcase_17 AC 167 ms
55,244 KB
testcase_18 AC 166 ms
54,796 KB
testcase_19 AC 160 ms
54,284 KB
testcase_20 AC 159 ms
54,328 KB
testcase_21 AC 168 ms
54,908 KB
testcase_22 AC 166 ms
54,636 KB
testcase_23 AC 170 ms
55,016 KB
testcase_24 AC 160 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Collections;
import java.util.Scanner;

/**
 * Created by btk on 2017/10/13.
 */
public class Main {
   public static void main(String[] args){
       Scanner sc=new Scanner(System.in);
       int n=sc.nextInt();
       int[] a = new int[n];
       for (int i = 0; i < n; i++) {
           a[i] = sc.nextInt();
       }
       Arrays.sort(a);
       int front = a[0];
       int back = a[n-1];
       if(front == back){
           if(2*(n-1)==front){
               System.out.println(n+" "+0);
           }
           else{
               System.out.println(0+" "+n);
           }
       }
       else{
           int m = (back-(n-1)*2)/2;
           System.out.println(n-m+" "+m);
       }
       sc.close();
   }
}
0