結果
問題 | No.73 helloworld |
ユーザー | Grenache |
提出日時 | 2015-11-03 21:44:05 |
言語 | Java21 (openjdk 21) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,024 KB |
testcase_01 | AC | 127 ms
54,020 KB |
testcase_02 | AC | 118 ms
52,884 KB |
testcase_03 | AC | 130 ms
53,980 KB |
testcase_04 | AC | 131 ms
53,904 KB |
testcase_05 | AC | 133 ms
54,160 KB |
testcase_06 | AC | 129 ms
53,956 KB |
testcase_07 | AC | 134 ms
54,164 KB |
testcase_08 | AC | 135 ms
53,868 KB |
testcase_09 | AC | 132 ms
54,048 KB |
testcase_10 | AC | 118 ms
52,744 KB |
testcase_11 | AC | 131 ms
53,816 KB |
testcase_12 | AC | 132 ms
54,156 KB |
testcase_13 | AC | 133 ms
53,948 KB |
ソースコード
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(); } }