結果

問題 No.73 helloworld
ユーザー 37zigen37zigen
提出日時 2016-05-04 15:36:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 1,129 bytes
コンパイル時間 2,994 ms
コンパイル使用メモリ 77,460 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-06-29 13:42:18
合計ジャッジ時間 5,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,600 KB
testcase_01 AC 101 ms
41,312 KB
testcase_02 AC 110 ms
41,284 KB
testcase_03 AC 112 ms
41,412 KB
testcase_04 AC 113 ms
41,180 KB
testcase_05 AC 99 ms
41,048 KB
testcase_06 AC 114 ms
41,444 KB
testcase_07 AC 112 ms
41,280 KB
testcase_08 AC 115 ms
41,148 KB
testcase_09 AC 102 ms
41,352 KB
testcase_10 AC 111 ms
41,032 KB
testcase_11 AC 101 ms
41,448 KB
testcase_12 AC 102 ms
41,668 KB
testcase_13 AC 112 ms
41,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Q073 {
	public static void main(String[] args)throws Exception{
		new Q073().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		String s="abcdefghijklmnopqrstuvwxyz";
		long h=0,e=0,l=0,o=0,w=0,r=0,d=0;
		for(int i=0;i<26;i++){
			int a=sc.nextInt();
			if(i==7)h=a;
			else if(i==s.indexOf("e"))e=a;
			else if(i==s.indexOf("l"))l=a;
			else if(i==s.indexOf("o"))o=a;
			else if(i==s.indexOf("w"))w=a;
			else if(i==s.indexOf("r"))r=a;
			else if(i==s.indexOf("l"))l=a;
			else if(i==s.indexOf("d"))d=a;
		}
//		System.out.println(h+" "+e+" "+l+" "+o+" "+w+" "+r+" "+d);
		long x=(long)((l+1+Math.sqrt(l*l-l+1))/3.0);
		long o1=o/2;long o2=o-o1;o=0;
		long ans=Math.max(h*e*w*r*(l-x)*d*o1*o2*x*(x-1)/2, h*e*w*r*(l-x-1)*d*o1*o2*(x+1)*x/2);
		System.out.println(ans);		
//		System.out.println(s.indexOf("h"));
//		System.out.println(s.indexOf("e"));
//		System.out.println(s.indexOf("l"));
//		System.out.println(s.indexOf("o"));
//		System.out.println(s.indexOf("w"));
//		System.out.println(s.indexOf("r"));
//		System.out.println(s.indexOf("d"));
	}


}
0