結果

問題 No.112 ややこしい鶴亀算
ユーザー mitsuomitsuo
提出日時 2016-05-05 11:07:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 673 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 77,884 KB
実行使用メモリ 55,004 KB
最終ジャッジ日時 2024-10-05 09:29:30
合計ジャッジ時間 6,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,400 KB
testcase_01 AC 139 ms
54,912 KB
testcase_02 AC 138 ms
54,588 KB
testcase_03 AC 137 ms
54,824 KB
testcase_04 AC 133 ms
54,684 KB
testcase_05 AC 139 ms
54,648 KB
testcase_06 AC 141 ms
54,720 KB
testcase_07 AC 136 ms
55,004 KB
testcase_08 AC 120 ms
54,176 KB
testcase_09 AC 123 ms
54,436 KB
testcase_10 AC 140 ms
54,736 KB
testcase_11 AC 145 ms
54,788 KB
testcase_12 AC 141 ms
54,700 KB
testcase_13 AC 127 ms
54,172 KB
testcase_14 AC 140 ms
54,676 KB
testcase_15 AC 141 ms
54,252 KB
testcase_16 AC 140 ms
54,884 KB
testcase_17 AC 125 ms
54,408 KB
testcase_18 AC 142 ms
54,748 KB
testcase_19 AC 136 ms
54,180 KB
testcase_20 AC 125 ms
54,396 KB
testcase_21 AC 137 ms
54,720 KB
testcase_22 AC 133 ms
54,548 KB
testcase_23 AC 133 ms
54,788 KB
testcase_24 AC 134 ms
54,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.q112;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static String solve(List<String> in) {
		int N = Integer.valueOf(in.get(0).split(" ")[0]);
		int t = 0;
		for (String s : in.get(1).split(" ")) {
			t += Integer.valueOf(s);
		}
		int kame = (t - ((N - 1) * N * 2)) / (2 * (N - 1));
		int tsuru = N - kame;
		return tsuru + " " + kame;
	}

}
0