結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー | angel_p_57 |
提出日時 | 2015-05-12 12:22:08 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 714 bytes |
コンパイル時間 | 115 ms |
コンパイル使用メモリ | 22,016 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-07-06 00:05:15 |
合計ジャッジ時間 | 9,194 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 9 ms
5,376 KB |
testcase_07 | AC | 9 ms
5,376 KB |
testcase_08 | AC | 15 ms
5,376 KB |
testcase_09 | AC | 14 ms
5,376 KB |
testcase_10 | AC | 0 ms
5,376 KB |
testcase_11 | AC | 0 ms
5,376 KB |
testcase_12 | AC | 33 ms
5,376 KB |
testcase_13 | AC | 10 ms
5,376 KB |
testcase_14 | AC | 14 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <stdio.h> #include <assert.h> #include <stdlib.h> int main(void) { // input int L,M,N,Q,ret; ret=scanf("%d%d%d",&L,&M,&N); assert(ret==3&&L>0&&M>0&&N>0&&L<=N&&M<=N); int *abp = (int*)malloc(sizeof(int)*(L+M)); assert(abp); for ( int i=0; i<L+M; i++ ) { int *tp=&abp[i]; ret=scanf("%d",tp); assert(ret&&*tp>=1&&*tp<=N); } int *A=&abp[0], *B=&abp[L]; ret=scanf("%d",&Q); assert(ret&&Q>=1&&Q<=N); // solve int *R = (int*)calloc(Q,sizeof(int)); assert(R); for ( int i=0; i<L; i++ ) for ( int j=0; j<M; j++ ) { int v=A[i]-B[j]; if ( v>=0 && v<Q ) R[v]++; } // result for ( int i=0; i<Q; i++ ) printf("%d\n",R[i]); return 0; }