結果

問題 No.112 ややこしい鶴亀算
ユーザー shinwisteriashinwisteria
提出日時 2019-01-24 20:00:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 340 bytes
コンパイル時間 3,232 ms
コンパイル使用メモリ 76,024 KB
実行使用メモリ 42,492 KB
最終ジャッジ日時 2024-09-16 04:42:03
合計ジャッジ時間 7,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
42,076 KB
testcase_01 AC 136 ms
42,396 KB
testcase_02 AC 137 ms
42,232 KB
testcase_03 AC 137 ms
42,068 KB
testcase_04 AC 149 ms
42,264 KB
testcase_05 AC 139 ms
42,208 KB
testcase_06 AC 139 ms
42,376 KB
testcase_07 AC 149 ms
42,008 KB
testcase_08 AC 127 ms
41,844 KB
testcase_09 AC 138 ms
42,224 KB
testcase_10 AC 139 ms
42,372 KB
testcase_11 AC 140 ms
42,196 KB
testcase_12 AC 133 ms
42,356 KB
testcase_13 AC 135 ms
42,092 KB
testcase_14 AC 148 ms
42,212 KB
testcase_15 AC 151 ms
42,044 KB
testcase_16 AC 136 ms
41,984 KB
testcase_17 AC 133 ms
42,092 KB
testcase_18 AC 145 ms
42,492 KB
testcase_19 AC 134 ms
41,868 KB
testcase_20 AC 140 ms
42,068 KB
testcase_21 AC 144 ms
42,388 KB
testcase_22 AC 130 ms
42,124 KB
testcase_23 AC 157 ms
42,384 KB
testcase_24 AC 164 ms
42,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No112 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		s.nextLine();
		int tot = 0;
		for(int i = 0;i < n;i++){
			tot += s.nextInt();
		}
		s.close();

		tot = tot / (n-1);
		int k = tot / 2 - n;
		System.out.println(n - k + " " + k);
	}

}
0