結果
問題 | No.73 helloworld |
ユーザー | YamaKasa |
提出日時 | 2018-07-01 00:47:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 5,000 ms |
コード長 | 646 bytes |
コンパイル時間 | 2,082 ms |
コンパイル使用メモリ | 77,948 KB |
実行使用メモリ | 54,472 KB |
最終ジャッジ日時 | 2024-07-01 01:03:16 |
合計ジャッジ時間 | 4,570 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
54,208 KB |
testcase_01 | AC | 128 ms
54,276 KB |
testcase_02 | AC | 127 ms
54,040 KB |
testcase_03 | AC | 127 ms
53,984 KB |
testcase_04 | AC | 126 ms
54,472 KB |
testcase_05 | AC | 127 ms
54,064 KB |
testcase_06 | AC | 130 ms
54,000 KB |
testcase_07 | AC | 129 ms
54,280 KB |
testcase_08 | AC | 131 ms
53,960 KB |
testcase_09 | AC | 134 ms
54,092 KB |
testcase_10 | AC | 128 ms
54,236 KB |
testcase_11 | AC | 132 ms
54,224 KB |
testcase_12 | AC | 133 ms
54,332 KB |
testcase_13 | AC | 128 ms
54,136 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int[] C = new int[26]; for(int i = 0; i < 26; i++) { C[i] = scan.nextInt(); } scan.close(); // d e h l o r w // 3 4 7 11 14 17 22 long ans = (long)C[3] * C[4] * C[7] * C[17] * C[22]; long max1 = 0; for(int i = 2; i < C[11]; i++) { long t = (i * (i - 1))*(C[11] - i) / 2; max1 = Math.max(max1, t); } long max2 = 0; for(int i = 1; i < C[14]; i++) { long t = i * (C[14] - i); max2 = Math.max(max2, t); } ans = ans * max1 * max2; System.out.println(ans); } }