結果

問題 No.112 ややこしい鶴亀算
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:47:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 572 bytes
コンパイル時間 3,762 ms
コンパイル使用メモリ 76,368 KB
実行使用メモリ 42,548 KB
最終ジャッジ日時 2024-11-15 22:30:30
合計ジャッジ時間 8,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,128 KB
testcase_01 AC 151 ms
41,412 KB
testcase_02 AC 161 ms
41,904 KB
testcase_03 AC 159 ms
42,008 KB
testcase_04 AC 148 ms
41,544 KB
testcase_05 AC 137 ms
40,416 KB
testcase_06 AC 157 ms
42,172 KB
testcase_07 AC 157 ms
42,156 KB
testcase_08 AC 148 ms
41,640 KB
testcase_09 AC 147 ms
41,684 KB
testcase_10 AC 158 ms
42,288 KB
testcase_11 AC 158 ms
42,320 KB
testcase_12 AC 157 ms
42,192 KB
testcase_13 AC 150 ms
41,488 KB
testcase_14 AC 154 ms
41,512 KB
testcase_15 AC 162 ms
42,548 KB
testcase_16 AC 163 ms
42,444 KB
testcase_17 AC 162 ms
42,172 KB
testcase_18 AC 164 ms
42,332 KB
testcase_19 AC 155 ms
41,748 KB
testcase_20 AC 153 ms
41,804 KB
testcase_21 AC 163 ms
42,316 KB
testcase_22 AC 164 ms
42,216 KB
testcase_23 AC 164 ms
42,412 KB
testcase_24 AC 155 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		int n = sc.nextInt(), max = 0, min = 200, t, x, y;
		for (int i = 0; i < n; i++) {
			t = sc.nextInt();
			max = Math.max(max, t);
			min = Math.min(min, t);
		}
		if (max == min) {
			if ((n - 1) * 2 == max) {
				System.out.println(n + " 0");
			} else {
				System.out.println("0 " + n);
			}
		} else {
			x = n;
			y = 0;
			min += 4;
			while (x * 2 + y * 4 != min) {
				x--;
				y++;
			}
			System.out.println(x + " " + y);
		}
	}
}
0