結果
問題 | No.4 おもりと天秤 |
ユーザー | crazybbb3 |
提出日時 | 2016-12-07 22:04:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 71 ms / 5,000 ms |
コード長 | 2,215 bytes |
コンパイル時間 | 2,188 ms |
コンパイル使用メモリ | 78,252 KB |
実行使用メモリ | 52,356 KB |
最終ジャッジ日時 | 2024-06-26 10:04:48 |
合計ジャッジ時間 | 4,403 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,412 KB |
testcase_01 | AC | 56 ms
50,160 KB |
testcase_02 | AC | 56 ms
50,252 KB |
testcase_03 | AC | 57 ms
52,356 KB |
testcase_04 | AC | 55 ms
50,428 KB |
testcase_05 | AC | 66 ms
50,264 KB |
testcase_06 | AC | 56 ms
50,148 KB |
testcase_07 | AC | 67 ms
50,664 KB |
testcase_08 | AC | 54 ms
50,140 KB |
testcase_09 | AC | 71 ms
50,612 KB |
testcase_10 | AC | 67 ms
50,364 KB |
testcase_11 | AC | 54 ms
49,976 KB |
testcase_12 | AC | 54 ms
50,400 KB |
testcase_13 | AC | 54 ms
50,532 KB |
testcase_14 | AC | 56 ms
49,924 KB |
testcase_15 | AC | 56 ms
50,324 KB |
testcase_16 | AC | 55 ms
49,960 KB |
testcase_17 | AC | 56 ms
50,256 KB |
testcase_18 | AC | 66 ms
50,584 KB |
testcase_19 | AC | 69 ms
50,584 KB |
testcase_20 | AC | 68 ms
50,408 KB |
testcase_21 | AC | 67 ms
50,360 KB |
testcase_22 | AC | 67 ms
50,280 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.StringTokenizer; public class Main { static BufferedReader in; static PrintWriter out; static StringTokenizer tok; void solve() throws IOException { int n = ni(); int[] w = nia(n); int sum = 0; for (int i = 0; i < n; i++) { sum += w[i]; } if (sum % 2 == 1) { out.println("impossible"); return; } boolean[] can = new boolean[sum + 1]; can[0] = true; for (int i = 0; i < n; i++) { for (int j = sum; j >= 0; j--) { if (can[j]) { can[j + w[i]] = true; } } } if (can[sum / 2]) { out.println("possible"); } else { out.println("impossible"); } } String ns() throws IOException { while (!tok.hasMoreTokens()) { tok = new StringTokenizer(in.readLine(), " "); } return tok.nextToken(); } int ni() throws IOException { return Integer.parseInt(ns()); } long nl() throws IOException { return Long.parseLong(ns()); } double nd() throws IOException { return Double.parseDouble(ns()); } String[] nsa(int n) throws IOException { String[] res = new String[n]; for (int i = 0; i < n; i++) { res[i] = ns(); } return res; } int[] nia(int n) throws IOException { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = ni(); } return res; } long[] nla(int n) throws IOException { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nl(); } return res; } public static void main(String[] args) throws IOException { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); tok = new StringTokenizer(""); Main main = new Main(); main.solve(); out.close(); } }