結果

問題 No.112 ややこしい鶴亀算
ユーザー GrenacheGrenache
提出日時 2015-09-23 20:08:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 426 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-07-19 08:50:12
合計ジャッジ時間 6,956 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,936 KB
testcase_01 AC 124 ms
54,080 KB
testcase_02 AC 123 ms
53,888 KB
testcase_03 AC 122 ms
53,900 KB
testcase_04 AC 109 ms
52,772 KB
testcase_05 AC 124 ms
53,804 KB
testcase_06 AC 126 ms
53,700 KB
testcase_07 AC 127 ms
53,860 KB
testcase_08 AC 124 ms
54,080 KB
testcase_09 AC 122 ms
54,068 KB
testcase_10 AC 122 ms
54,152 KB
testcase_11 AC 127 ms
53,968 KB
testcase_12 AC 130 ms
53,880 KB
testcase_13 AC 125 ms
54,136 KB
testcase_14 AC 131 ms
53,896 KB
testcase_15 AC 127 ms
53,960 KB
testcase_16 AC 133 ms
53,956 KB
testcase_17 AC 131 ms
53,928 KB
testcase_18 AC 128 ms
53,904 KB
testcase_19 AC 128 ms
53,796 KB
testcase_20 AC 117 ms
52,804 KB
testcase_21 AC 128 ms
53,760 KB
testcase_22 AC 112 ms
52,752 KB
testcase_23 AC 129 ms
53,780 KB
testcase_24 AC 125 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder112 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int sum = 0;
        for (int i = 0; i < n; i++) {
        	sum += sc.nextInt();
        }

        sum /= n - 1;
        int b = (sum - 2 * n) / 2;

        System.out.printf("%d %d\n", n - b, b);
        
        sc.close();
    }
}
0