結果
問題 | No.398 ハーフパイプ(2) |
ユーザー | 👑 testestest |
提出日時 | 2016-07-18 01:42:28 |
言語 | C90 (gcc 11.4.0) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 484 bytes |
コンパイル時間 | 561 ms |
コンパイル使用メモリ | 21,632 KB |
実行使用メモリ | 274,780 KB |
最終ジャッジ日時 | 2024-06-27 14:45:43 |
合計ジャッジ時間 | 23,825 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:9: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration] 8 | scanf("%d.%d",&i,&k); | ^~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ +++ |+#include <stdio.h> 1 | #define min(a,b)(a<b?a:b) main.c:8:9: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch] 8 | scanf("%d.%d",&i,&k); | ^~~~~ main.c:8:9: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ main.c:11:9: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration] 11 | printf("%ld",a); | ^~~~~~ main.c:11:9: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’ main.c:11:9: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch] main.c:11:9: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
ソースコード
#define min(a,b)(a<b?a:b) #define max(a,b)(a>b?a:b) long dp[9][110][110][900],a; int main(){ int i,m,M,s,k; for(m=0;m<=100;m++)for(k=m;k<=100;k++)for(M=k;M<=100;M++)dp[3][m][M][m+k+M]=m==M?1:m==k||k==M?3:6; for(i=3;i<6;i++)for(m=0;m<=100;m++)for(M=m;M<=100;M++)for(s=m*i;s<=i*100;s++)for(k=0;k<=100;k++)dp[i+1][min(m,k)][max(M,k)][s+k]+=dp[i][m][M][s]; scanf("%d.%d",&i,&k); i=i*4+k/25; for(m=0;m<=100;m++)for(M=m;M<=100;M++)a+=dp[6][m][M][i+m+M]; printf("%ld",a); return 0; }