結果
問題 | No.107 モンスター |
ユーザー | tenten |
提出日時 | 2021-11-10 11:11:45 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,875 bytes |
コンパイル時間 | 2,307 ms |
コンパイル使用メモリ | 77,608 KB |
実行使用メモリ | 75,244 KB |
最終ジャッジ日時 | 2024-11-20 20:39:56 |
合計ジャッジ時間 | 60,460 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
74,428 KB |
testcase_01 | AC | 54 ms
57,108 KB |
testcase_02 | AC | 54 ms
74,704 KB |
testcase_03 | AC | 54 ms
57,228 KB |
testcase_04 | AC | 55 ms
74,800 KB |
testcase_05 | AC | 53 ms
42,304 KB |
testcase_06 | AC | 54 ms
57,264 KB |
testcase_07 | AC | 56 ms
75,244 KB |
testcase_08 | AC | 55 ms
74,476 KB |
testcase_09 | AC | 54 ms
42,344 KB |
testcase_10 | AC | 54 ms
37,060 KB |
testcase_11 | AC | 54 ms
36,808 KB |
testcase_12 | AC | 54 ms
36,604 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 55 ms
36,928 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 1,100 ms
38,508 KB |
testcase_19 | AC | 1,058 ms
38,900 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
ソースコード
import java.util.*; import java.io.*; public class Main { static int ans = 0; static int n; static int[] monsters; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); n = sc.nextInt(); monsters = new int[n]; for (int i = 0; i < n; i++) { monsters[i] = sc.nextInt(); } check(0, 100, 100, new boolean[n]); System.out.println(ans); } static void check(int idx, int current, int max, boolean[] used) { if (idx >= n) { ans = Math.max(ans, current); return; } for (int i = 0; i < n; i++) { if (used[i]) { continue; } used[i] = true; if (monsters[i] < 0) { if (current + monsters[i] > 0) { check(idx + 1, current + monsters[i], max + 100, used); } } else { check(idx + 1, Math.min(current + monsters[i], max), max, used); } used[i] = false; } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }