結果

問題 No.112 ややこしい鶴亀算
ユーザー kou6839kou6839
提出日時 2014-12-29 16:59:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 426 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 76,180 KB
実行使用メモリ 42,696 KB
最終ジャッジ日時 2024-06-13 01:04:01
合計ジャッジ時間 6,653 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
42,132 KB
testcase_01 AC 125 ms
42,384 KB
testcase_02 AC 119 ms
42,336 KB
testcase_03 AC 133 ms
42,556 KB
testcase_04 AC 120 ms
42,552 KB
testcase_05 AC 142 ms
42,096 KB
testcase_06 AC 153 ms
42,520 KB
testcase_07 AC 157 ms
42,208 KB
testcase_08 AC 119 ms
42,324 KB
testcase_09 AC 131 ms
42,520 KB
testcase_10 AC 140 ms
42,592 KB
testcase_11 AC 139 ms
42,308 KB
testcase_12 AC 124 ms
42,476 KB
testcase_13 AC 125 ms
42,040 KB
testcase_14 AC 154 ms
42,504 KB
testcase_15 AC 139 ms
42,696 KB
testcase_16 AC 143 ms
42,632 KB
testcase_17 AC 133 ms
42,388 KB
testcase_18 AC 142 ms
42,544 KB
testcase_19 AC 156 ms
42,504 KB
testcase_20 AC 153 ms
42,468 KB
testcase_21 AC 143 ms
42,296 KB
testcase_22 AC 126 ms
42,124 KB
testcase_23 AC 141 ms
42,472 KB
testcase_24 AC 154 ms
42,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

class Main {
	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 turu=0;
        int kame=0;
        kame = (sum-n*2)/2;
        turu=n-kame;
        System.out.println(turu+" "+kame);
        
    }
}
0