結果
| 問題 | No.237 作図可能性 |
| コンテスト | |
| ユーザー |
testestest
|
| 提出日時 | 2016-03-08 21:58:39 |
| 言語 | C90(gcc12) (gcc 12.4.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 112 bytes |
| 記録 | |
| コンパイル時間 | 214 ms |
| コンパイル使用メモリ | 28,876 KB |
| 最終ジャッジ日時 | 2026-02-23 20:50:41 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 28 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:1:77: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
1 | f(a,b){return b?f(a,b-1)+f(a/((1<<(1<<b))+1),--b):a?log2(a)+1:0;}main(n){n=!printf("%d",f(atoi(gets(&n)),5)-2);}
| ^~~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
+++ |+#include <stdio.h>
1 | f(a,b){return b?f(a,b-1)+f(a/((1<<(1<<b))+1),--b):a?log2(a)+1:0;}main(n){n=!printf("%d",f(atoi(gets(&n)),5)-2);}
/usr/bin/ld: /tmp/cctCQQHZ.o: in function `main':
main.c:(.text.startup+0x14): 警告: the `gets' function is dangerous and should not be used.
ソースコード
f(a,b){return b?f(a,b-1)+f(a/((1<<(1<<b))+1),--b):a?log2(a)+1:0;}main(n){n=!printf("%d",f(atoi(gets(&n)),5)-2);}
testestest