結果
| 問題 | No.658 テトラナッチ数列 Hard |
| コンテスト | |
| ユーザー |
%20
|
| 提出日時 | 2018-03-15 01:55:21 |
| 言語 | C90(gcc12) (gcc 12.4.0) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 113 bytes |
| 記録 | |
| コンパイル時間 | 116 ms |
| コンパイル使用メモリ | 29,124 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-03-08 16:16:17 |
| 合計ジャッジ時間 | 1,150 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 8 |
コンパイルメッセージ
main.c: In function ‘f’:
main.c:1:48: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
1 | long n;f(a,b,c,d){n--%4912?f(b,c,d%17,a+b+c+d):printf("%d\n",a);}main(i){for(;~scanf("%ld",&n);--i&&f(1,0,0,0));}
| ^~~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
+++ |+#include <stdio.h>
1 | long n;f(a,b,c,d){n--%4912?f(b,c,d%17,a+b+c+d):printf("%d\n",a);}main(i){for(;~scanf("%ld",&n);--i&&f(1,0,0,0));}
main.c: In function ‘main’:
main.c:1:80: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
1 | long n;f(a,b,c,d){n--%4912?f(b,c,d%17,a+b+c+d):printf("%d\n",a);}main(i){for(;~scanf("%ld",&n);--i&&f(1,0,0,0));}
| ^~~~~
main.c:1:80: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
ソースコード
long n;f(a,b,c,d){n--%4912?f(b,c,d%17,a+b+c+d):printf("%d\n",a);}main(i){for(;~scanf("%ld",&n);--i&&f(1,0,0,0));}
%20