結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー | FF256grhy |
提出日時 | 2015-05-11 02:02:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 570 bytes |
コンパイル時間 | 109 ms |
コンパイル使用メモリ | 23,296 KB |
実行使用メモリ | 7,808 KB |
最終ジャッジ日時 | 2024-07-05 22:12:40 |
合計ジャッジ時間 | 12,314 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 6 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 8 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 0 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 6 ms
5,376 KB |
testcase_17 | AC | 3,276 ms
5,376 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:13:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d%d%d", &l, &m, &n); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~ main.cpp:15:39: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | for(i = 0; i < l; i++) { scanf("%d", &a); bucket_a[a - 1] = 1; } | ~~~~~^~~~~~~~~~ main.cpp:16:39: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | for(i = 0; i < m; i++) { scanf("%d", &b); bucket_b[b - 1] = 1; } | ~~~~~^~~~~~~~~~ main.cpp:17:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%d", &q); | ~~~~~^~~~~~~~~~
ソースコード
// どのくらい時間がかかるかのテスト #include <stdio.h> #define MAX 100000 int l, m, n, q; int bucket_a[MAX], bucket_b[MAX]; int memo[MAX]; int main(void) { int i, j; scanf("%d%d%d", &l, &m, &n); int a, b; for(i = 0; i < l; i++) { scanf("%d", &a); bucket_a[a - 1] = 1; } for(i = 0; i < m; i++) { scanf("%d", &b); bucket_b[b - 1] = 1; } scanf("%d", &q); for(i = 0; i < MAX; i++) { if(bucket_a[i]) { for(j = 0; j <= i; j++) { if(bucket_b[j]) { memo[i - j]++; } } } } for(i = 0; i < q; i++) { printf("%d\n", memo[i]); } return 0; }