結果

問題 No.112 ややこしい鶴亀算
ユーザー htensaihtensai
提出日時 2019-12-05 16:02:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 2,848 ms
コンパイル使用メモリ 76,072 KB
実行使用メモリ 54,996 KB
最終ジャッジ日時 2024-12-18 00:41:45
合計ジャッジ時間 8,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
54,860 KB
testcase_01 AC 165 ms
54,764 KB
testcase_02 AC 158 ms
54,664 KB
testcase_03 AC 166 ms
54,628 KB
testcase_04 AC 164 ms
54,552 KB
testcase_05 AC 156 ms
54,620 KB
testcase_06 AC 167 ms
54,728 KB
testcase_07 AC 159 ms
54,932 KB
testcase_08 AC 162 ms
54,784 KB
testcase_09 AC 161 ms
54,912 KB
testcase_10 AC 158 ms
54,996 KB
testcase_11 AC 162 ms
54,752 KB
testcase_12 AC 157 ms
54,880 KB
testcase_13 AC 158 ms
54,884 KB
testcase_14 AC 169 ms
54,552 KB
testcase_15 AC 170 ms
54,580 KB
testcase_16 AC 163 ms
54,836 KB
testcase_17 AC 168 ms
54,580 KB
testcase_18 AC 163 ms
54,772 KB
testcase_19 AC 174 ms
54,800 KB
testcase_20 AC 172 ms
54,644 KB
testcase_21 AC 170 ms
54,748 KB
testcase_22 AC 173 ms
54,496 KB
testcase_23 AC 172 ms
54,792 KB
testcase_24 AC 171 ms
54,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int total = 0;
		for (int i = 0; i < n; i++) {
		    total += sc.nextInt();
		}
		int count = total / (n - 1);
		int turtle = (count - 2 * n) / 2;
		int bird = n - turtle;
		System.out.println(bird + " " + turtle);
   }
}

0