結果

問題 No.73 helloworld
ユーザー ぴろずぴろず
提出日時 2014-12-11 15:04:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 1,687 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-06-11 20:35:07
合計ジャッジ時間 4,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,296 KB
testcase_01 AC 111 ms
41,716 KB
testcase_02 AC 116 ms
41,640 KB
testcase_03 AC 114 ms
41,612 KB
testcase_04 AC 115 ms
41,548 KB
testcase_05 AC 110 ms
41,424 KB
testcase_06 AC 112 ms
41,724 KB
testcase_07 AC 114 ms
41,520 KB
testcase_08 AC 109 ms
41,188 KB
testcase_09 AC 110 ms
41,288 KB
testcase_10 AC 100 ms
41,376 KB
testcase_11 WA -
testcase_12 AC 113 ms
41,268 KB
testcase_13 AC 111 ms
41,480 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 *= 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