結果

問題 No.73 helloworld
ユーザー ぴろずぴろず
提出日時 2014-12-11 15:12:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 2,451 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-06-28 22:02:15
合計ジャッジ時間 4,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,352 KB
testcase_01 AC 108 ms
41,148 KB
testcase_02 AC 100 ms
41,296 KB
testcase_03 AC 105 ms
41,264 KB
testcase_04 AC 118 ms
41,540 KB
testcase_05 AC 112 ms
41,520 KB
testcase_06 AC 112 ms
41,628 KB
testcase_07 AC 103 ms
41,664 KB
testcase_08 AC 118 ms
41,176 KB
testcase_09 AC 116 ms
41,412 KB
testcase_10 AC 116 ms
39,992 KB
testcase_11 AC 107 ms
41,368 KB
testcase_12 AC 112 ms
41,412 KB
testcase_13 AC 101 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no073;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] c = new int[128];
		for(int i=0;i<26;i++) {
			c[i + 'a'] = sc.nextInt();
		}
		long num = 1;
		num *= (long) c['h'] * c['e'] * c['w'] * c['r'] * c['d'];
		int o = c['o'];
		num *= (o/2) * (o-o/2);
		int l = c['l'];
		if (l == 0) {
			num = 0;
		}else{
			long max = 0;
			for(int i=1;i<l;i++) {
				max = Math.max(max,i*(i-1)/2*(l-i));
			}
			num *= max;
		}
		System.out.println(num);
	}

}
0