結果
問題 | No.4 おもりと天秤 |
ユーザー | FF256grhy |
提出日時 | 2015-05-06 04:40:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 938 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 24,064 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 19:11:00 |
合計ジャッジ時間 | 1,302 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 31 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 29 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 0 ms
5,376 KB |
testcase_09 | AC | 29 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 29 ms
5,376 KB |
testcase_12 | AC | 29 ms
5,376 KB |
testcase_13 | AC | 28 ms
5,376 KB |
testcase_14 | AC | 29 ms
5,376 KB |
testcase_15 | AC | 29 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 0 ms
5,376 KB |
testcase_18 | AC | 31 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:14:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%d", &w[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <stdio.h> int judge(); int w[128]; int half; int bucket[4][8][5000]; int main(void) { int n; scanf("%d", &n); int i; for(i = 0; i < n; i++) { scanf("%d", &w[i]); } printf("%s%s\n", judge() ? "" : "im", "possible"); return 0; } int judge() { int sum = 0, i, j, k, l; for(i = 0; i < 128; i++) { sum += w[i]; } if(sum % 2) { return 0; } half = sum / 2; for(i = 0; i < 8; i++) { for(j = 0; j < 65536; j++) { sum = 0; for(k = 0; k < 16; k++) { sum += w[i * 16 + k] * ( j / (1 << k) % 2 ); // 下からk bit目 } if(sum == half) { return 1; } if(sum < half) { bucket[3][i][sum] = i; } } } for(i = 3; 0 < i; i--) { for(j = 0; j < (1 << i); j += 2) { for(k = 0; k <= half; k++) { if(bucket[i][j ][k]) { for(l = 0; k + l <= half; l++) { if(bucket[i][j + 1][l]) { if(k + l == half) { return 1; } bucket[i - 1][j / 2][k + l] = 1; } } } } } } return 0; }