結果
問題 | No.27 板の準備 |
ユーザー | Grenache |
提出日時 | 2016-03-12 12:07:20 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 122 ms / 5,000 ms |
コード長 | 1,412 bytes |
コンパイル時間 | 3,305 ms |
コンパイル使用メモリ | 78,044 KB |
実行使用メモリ | 41,492 KB |
最終ジャッジ日時 | 2024-06-08 00:23:11 |
合計ジャッジ時間 | 5,592 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 98 ms
40,208 KB |
testcase_01 | AC | 98 ms
40,204 KB |
testcase_02 | AC | 109 ms
40,992 KB |
testcase_03 | AC | 100 ms
40,160 KB |
testcase_04 | AC | 109 ms
40,992 KB |
testcase_05 | AC | 112 ms
41,492 KB |
testcase_06 | AC | 117 ms
41,240 KB |
testcase_07 | AC | 114 ms
41,088 KB |
testcase_08 | AC | 109 ms
40,988 KB |
testcase_09 | AC | 113 ms
41,172 KB |
testcase_10 | AC | 104 ms
40,068 KB |
testcase_11 | AC | 121 ms
41,052 KB |
testcase_12 | AC | 109 ms
41,040 KB |
testcase_13 | AC | 108 ms
40,992 KB |
testcase_14 | AC | 107 ms
41,052 KB |
testcase_15 | AC | 122 ms
41,084 KB |
testcase_16 | AC | 106 ms
40,940 KB |
testcase_17 | AC | 118 ms
41,128 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main_yukicoder27 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] v = new int[4]; for (int i = 0; i < 4; i++) { v[i] = sc.nextInt(); } Arrays.sort(v); int max = v[3]; int min = Integer.MAX_VALUE; for (int i = 1; i <= max; i++) { for (int j = i + 1; j <= max + 1; j++) { next: for (int k = j + 1; k <= max + 2; k++) { int sum = 0; for (int e : v) { int tmp = isOK(e, i, j, k, max); if (tmp == 0) { continue next; } sum += tmp; } min = Math.min(min, sum); } } } System.out.println(min); sc.close(); } private static int isOK(int v, int a, int b, int c, int max) { int min = Integer.MAX_VALUE; for (int i = v / c; i >= 0; i--) { for (int j = (v - c * i) / b; j >= 0; j--) { if ((v - c * i - b * j) % a == 0) { int k = (v - c * i - b * j) / a; if ((j != 0 && b > max) || (i != 0 && c > max)) { continue; } min = Math.min(min, i + j + k); } } } if (min == Integer.MAX_VALUE) { return 0; } else { return min; } } }