結果

問題 No.112 ややこしい鶴亀算
ユーザー atkrymatkrym
提出日時 2016-10-25 21:34:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 2,460 ms
コンパイル使用メモリ 76,780 KB
実行使用メモリ 42,620 KB
最終ジャッジ日時 2024-05-03 06:03:10
合計ジャッジ時間 7,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
42,236 KB
testcase_01 AC 160 ms
42,444 KB
testcase_02 AC 159 ms
42,364 KB
testcase_03 AC 162 ms
42,588 KB
testcase_04 AC 159 ms
42,368 KB
testcase_05 AC 147 ms
41,696 KB
testcase_06 AC 162 ms
42,072 KB
testcase_07 AC 164 ms
42,096 KB
testcase_08 AC 157 ms
42,300 KB
testcase_09 AC 159 ms
42,436 KB
testcase_10 AC 156 ms
42,208 KB
testcase_11 AC 146 ms
42,012 KB
testcase_12 AC 147 ms
42,184 KB
testcase_13 AC 157 ms
42,264 KB
testcase_14 AC 162 ms
42,544 KB
testcase_15 AC 163 ms
42,312 KB
testcase_16 AC 152 ms
42,112 KB
testcase_17 AC 164 ms
42,620 KB
testcase_18 AC 167 ms
42,472 KB
testcase_19 AC 163 ms
42,348 KB
testcase_20 AC 166 ms
42,524 KB
testcase_21 AC 166 ms
42,368 KB
testcase_22 AC 165 ms
42,452 KB
testcase_23 AC 164 ms
42,344 KB
testcase_24 AC 169 ms
42,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        int sum = 0;
        for (int i = 0;i < n;i++) {
            sum += sc.nextInt();
        }
        sum /= n-1;
        int d = (sum-2*n)/2;
        int t = n - d;
        int k = d;
        
        System.out.println(t+" "+k);
    }
}
0