結果

問題 No.73 helloworld
ユーザー tsunabittsunabit
提出日時 2020-01-07 15:02:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 818 bytes
コンパイル時間 5,436 ms
コンパイル使用メモリ 78,920 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-05-02 11:33:31
合計ジャッジ時間 8,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No73 {
//	private static Set<String> set = new HashSet<String>();
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] a = new int[26];
		long total = 0;
		for(int i = 0; i < 26; i++) {
			a[i] = sc.nextInt();
		}
		// この問題は部分文字列
		// lとo以外の文字
		total = (long)a[3]*a[4]*a[7]*a[17]*a[22];
		System.out.println("loigai = " +  total);
		// lの最大
		long maxl = 0;
		for(int i = 2; i < a[11]; i++) {
			long tmp = i * (i - 1) / 2 * (a[11] - i);
			maxl = Math.max(maxl, tmp);
		}
		// oの最大
		long maxo = 0;
		for(int i = 1; i < a[14]; i++) {
			long tmp = i * (a[14] - i);
			maxo = Math.max(maxo, tmp);
		}
		total = total * maxl * maxo;
		System.out.println(total);
	}
}
0