結果

問題 No.11 カードマッチ
ユーザー 👑 testestesttestestest
提出日時 2015-09-09 18:35:56
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 289 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 20,224 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 19:54:37
合計ジャッジ時間 844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 0 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 0 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 0 ms
5,248 KB
testcase_08 AC 0 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 0 ms
5,248 KB
testcase_15 AC 0 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 0 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:4:1: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration]
    4 | scanf("%d%d%d",&w,&h,&n);
      | ^~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
  +++ |+#include <stdio.h>
    1 | int s[101],k[101];
main.c:4:1: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
    4 | scanf("%d%d%d",&w,&h,&n);
      | ^~~~~
main.c:4:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
main.c:13:1: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
   13 | printf("%d",ts*h-n+(w-ts)*tk);
      | ^~~~~~
main.c:13:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
main.c:13:1: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
main.c:13:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’

ソースコード

diff #

int s[101],k[101];
int main(){
int w,h,n,ts,tk,i;
scanf("%d%d%d",&w,&h,&n);
for(;~scanf("%d%d",&ts,&tk);){
for(i=0;s[i]!=ts&&s[i];i++);
if(!s[i])s[i]=ts;
for(i=0;k[i]!=tk&&k[i];i++);
if(!k[i])k[i]=tk;
}
for(ts=0;s[ts];ts++);
for(tk=0;k[tk];tk++);
printf("%d",ts*h-n+(w-ts)*tk);
return 0;
}
0