結果

問題 No.73 helloworld
ユーザー fujisufujisu
提出日時 2015-05-13 20:03:57
言語 Java19
(openjdk 21)
結果
AC  
実行時間 188 ms / 5,000 ms
コード長 3,017 bytes
コンパイル時間 3,037 ms
コンパイル使用メモリ 75,004 KB
実行使用メモリ 51,252 KB
最終ジャッジ日時 2023-09-11 11:20:04
合計ジャッジ時間 4,867 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
50,956 KB
testcase_01 AC 42 ms
49,036 KB
testcase_02 AC 42 ms
49,000 KB
testcase_03 AC 42 ms
49,076 KB
testcase_04 AC 55 ms
50,844 KB
testcase_05 AC 58 ms
50,644 KB
testcase_06 AC 60 ms
50,820 KB
testcase_07 AC 58 ms
51,252 KB
testcase_08 AC 57 ms
50,780 KB
testcase_09 AC 68 ms
50,496 KB
testcase_10 AC 71 ms
50,500 KB
testcase_11 AC 188 ms
50,548 KB
testcase_12 AC 44 ms
49,072 KB
testcase_13 AC 43 ms
49,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.Arrays;
import java.util.InputMismatchException;

public class Main {
	long[][] dp;

	long combi(int n, int k) {
		if (k == 0 || n == k) {
			return 1;
		}
		if (n < 0 || k < 0) {
			return 0;
		}
		if (0 <= dp[n][k]) {
			return dp[n][k];
		}
		return combi(n - 1, k) + combi(n - 1, k - 1);
	}

	void run() {
		MyScanner sc = new MyScanner();
		int[] k = new int['z' - 'a' + 1];
		int n = k.length;
		for (int i = 0; i < n; i++) {
			k[i] = sc.nextInt();
		}

		long ans = 1;
		char[] hello = "hewrd".toCharArray();
		for (int i = 0; i < hello.length; i++) {
			ans *= k[hello[i] - 'a'];
		}

		long max = 0;
		dp = new long[101][101];
		for (int i = 0; i < 101; i++) {
			Arrays.fill(dp[i], -1);
		}
		for (int l = 2; l < k['l' - 'a']; l++) {
			for (int o = 1; o < k['o' - 'a']; o++) {
				long tmp = 1;
				tmp *= combi(l, 2);
				tmp *= combi(k['l' - 'a'] - l, 1);
				tmp *= combi(o, 1);
				tmp *= combi(k['o' - 'a'] - o, 1);
				max = Math.max(max, tmp);
			}
		}
		ans *= max;
		System.out.println(ans);
	}

	public static void main(String[] args) {
		new Main().run();
	}

	public void mapDebug(int[][] a) {
		System.out.println("--------map display---------");
		for (int i = 0; i < a.length; i++) {
			for (int j = 0; j < a[i].length; j++) {
				System.out.printf("%3d ", a[i][j]);
			}
			System.out.println();
		}
		System.out.println("----------------------------" + '\n');
	}

	class MyScanner {
		int read() {
			try {
				return System.in.read();
			} catch (IOException e) {
				throw new InputMismatchException();
			}
		}

		boolean isSpaceChar(int c) {
			return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
		}

		boolean isEndline(int c) {
			return c == '\n' || c == '\r' || c == -1;
		}

		int nextInt() {
			return Integer.parseInt(next());
		}

		int[] nextIntArray(int n) {
			int[] array = new int[n];
			for (int i = 0; i < n; i++)
				array[i] = nextInt();
			return array;
		}

		long nextLong() {
			return Long.parseLong(next());
		}

		long[] nextLongArray(int n) {
			long[] array = new long[n];
			for (int i = 0; i < n; i++)
				array[i] = nextLong();
			return array;
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		double[] nextDoubleArray(int n) {
			double[] array = new double[n];
			for (int i = 0; i < n; i++)
				array[i] = nextDouble();
			return array;
		}

		String next() {
			int c = read();
			while (isSpaceChar(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isSpaceChar(c));
			return res.toString();
		}

		String[] nextStringArray(int n) {
			String[] array = new String[n];
			for (int i = 0; i < n; i++)
				array[i] = next();

			return array;
		}

		String nextLine() {
			int c = read();
			while (isEndline(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isEndline(c));
			return res.toString();
		}
	}
}
0