結果
問題 | No.297 カードの数式 |
ユーザー | testestest |
提出日時 | 2015-11-06 22:47:29 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 604 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 22,632 KB |
実行使用メモリ | 15,048 KB |
最終ジャッジ日時 | 2024-09-13 13:24:25 |
合計ジャッジ時間 | 4,515 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
コンパイルメッセージ
main.c:1:8: warning: data definition has no type or storage class 1 | long s;a[12],b[12],n,i,c,t; | ^ main.c:1:8: warning: type defaults to ‘int’ in declaration of ‘a’ [-Wimplicit-int] main.c:1:14: warning: type defaults to ‘int’ in declaration of ‘b’ [-Wimplicit-int] 1 | long s;a[12],b[12],n,i,c,t; | ^ main.c:1:20: warning: type defaults to ‘int’ in declaration of ‘n’ [-Wimplicit-int] 1 | long s;a[12],b[12],n,i,c,t; | ^ main.c:1:22: warning: type defaults to ‘int’ in declaration of ‘i’ [-Wimplicit-int] 1 | long s;a[12],b[12],n,i,c,t; | ^ main.c:1:24: warning: type defaults to ‘int’ in declaration of ‘c’ [-Wimplicit-int] 1 | long s;a[12],b[12],n,i,c,t; | ^ main.c:1:26: warning: type defaults to ‘int’ in declaration of ‘t’ [-Wimplicit-int] 1 | long s;a[12],b[12],n,i,c,t; | ^ main.c:2:1: warning: return type defaults to ‘int’ [-Wimplicit-int] 2 | main(){ | ^~~~ main.c: In function ‘main’: main.c:3:1: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration] 3 | scanf("%d",&n); | ^~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ +++ |+#include <stdio.h> 1 | long s;a[12],b[12],n,i,c,t; main.c:3:1: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch] 3 | scanf("%d",&n); | ^~~~~ main.c:3:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ main.c:4:45: warning: implicit declaration of function ‘getchar’ [-Wimplicit-function-declaration] 4 | for(;i<n;c<0?c==-5?a[10]++:a[11]++:a[c]++)c=getchar()-48; | ^~~~~~~ main.c:4:45: note: ‘getchar’ is defined in header ‘<stdio.h>’; did you forget to ‘#include <stdio.h>’
ソースコード
long s;a[12],b[12],n,i,c,t; main(){ scanf("%d",&n); for(;i<n;c<0?c==-5?a[10]++:a[11]++:a[c]++)c=getchar()-48; c=n-1-a[10]-a[11]; for(i=0;i<12;i++)b[i]=a[i]; for(t=9;c;)a[t]--?c--,s=s*10+a[t]:t--; s*=10; for(t=9;a[10];)a[t]--?a[10]--,s=s+a[t]:t--; for(t=9;a[11];)a[t]--?a[11]--,s=s-a[t]:t--; printf("%d ",s); s=0; if(b[11]){ for(t=9;c;)b[t]--?c--,s=s*10+b[t]:t--; s*=10; for(t=9;b[11];)b[t]--?b[11]--,s=s+b[t]:t--; for(t=9;b[10];)b[t]--?b[10]--,s=s-b[t]:t--; printf("%d",-s); } else { for(t=0;c;)b[t]--?c--,s=s*10+b[t]:t++; s*=10; for(t=9;b[10];)b[t]--?b[10]--,s=s+b[t]:t--; printf("%d",s); } return 0; }