結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,096 KB
testcase_01 AC 148 ms
42,088 KB
testcase_02 AC 146 ms
42,432 KB
testcase_03 AC 151 ms
42,380 KB
testcase_04 AC 145 ms
41,868 KB
testcase_05 AC 159 ms
42,216 KB
testcase_06 AC 138 ms
42,424 KB
testcase_07 AC 158 ms
42,316 KB
testcase_08 AC 143 ms
41,840 KB
testcase_09 AC 143 ms
42,236 KB
testcase_10 AC 139 ms
42,196 KB
testcase_11 AC 140 ms
42,336 KB
testcase_12 AC 148 ms
42,172 KB
testcase_13 AC 148 ms
42,128 KB
testcase_14 AC 162 ms
42,228 KB
testcase_15 AC 153 ms
42,316 KB
testcase_16 AC 161 ms
42,524 KB
testcase_17 AC 148 ms
42,328 KB
testcase_18 AC 154 ms
42,252 KB
testcase_19 AC 162 ms
42,568 KB
testcase_20 AC 166 ms
42,528 KB
testcase_21 AC 163 ms
42,400 KB
testcase_22 AC 154 ms
42,212 KB
testcase_23 AC 148 ms
41,972 KB
testcase_24 AC 161 ms
42,412 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