結果

問題 No.73 helloworld
ユーザー GrenacheGrenache
提出日時 2015-11-03 21:44:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 677 bytes
コンパイル時間 3,839 ms
コンパイル使用メモリ 75,520 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-06-29 04:57:15
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder73 {

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

        long[] c = new long[26];
        for (int i = 0; i < 26; i++) {
        	c[i] = sc.nextLong();
        }

        long ret = c['h' - 'a'] * c['e' - 'a'] * c['w' - 'a'] * c['r' - 'a'] * c['d' - 'a'];
        long tmp = c['o' - 'a'] / 2;
        ret *= (c['o' - 'a'] - tmp) * tmp;

        long max = 0;
        for (long l = 1; l <= c['l' - 'a']; l++) {
        	max = Math.max(max, ret * (c['l' - 'a'] - l) * (c['l' - 'a'] - l - 1) / 2 * l);
        }

		System.out.println(max);
        
        sc.close();
    }
}
0