結果

問題 No.112 ややこしい鶴亀算
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 12:20:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-07-04 03:40:58
合計ジャッジ時間 6,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,248 KB
testcase_01 AC 132 ms
54,168 KB
testcase_02 AC 132 ms
54,084 KB
testcase_03 AC 129 ms
54,056 KB
testcase_04 AC 130 ms
54,036 KB
testcase_05 AC 130 ms
54,168 KB
testcase_06 AC 132 ms
54,156 KB
testcase_07 AC 128 ms
54,084 KB
testcase_08 AC 134 ms
54,188 KB
testcase_09 AC 132 ms
53,964 KB
testcase_10 AC 133 ms
54,184 KB
testcase_11 AC 131 ms
54,036 KB
testcase_12 AC 130 ms
54,224 KB
testcase_13 AC 131 ms
54,060 KB
testcase_14 AC 135 ms
54,212 KB
testcase_15 AC 138 ms
54,236 KB
testcase_16 AC 137 ms
54,016 KB
testcase_17 AC 134 ms
53,904 KB
testcase_18 AC 130 ms
53,936 KB
testcase_19 AC 131 ms
54,052 KB
testcase_20 AC 137 ms
54,336 KB
testcase_21 AC 139 ms
54,352 KB
testcase_22 AC 137 ms
53,812 KB
testcase_23 AC 134 ms
54,360 KB
testcase_24 AC 135 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int[] a = new int[n];
        int sum = 0;
        for(int i=0; i<n; i++){
            a[i] = koko.nextInt();
            sum = sum + a[i];
        }
        int sumt = sum/(n-1);
        int turu = (4*n-sumt)/2;
        int kame = (sumt-2*n)/2;
        System.out.print(turu);
        System.out.print(" ");
        System.out.println(kame);
    }
}
0